Skip to content

Commit

Permalink
Fix a merge issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
nbayati committed Dec 18, 2024
1 parent f273941 commit 87d2e05
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
2 changes: 2 additions & 0 deletions cab-token-generator/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@
<artifactId>mockito-core</artifactId>
<version>4.11.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
</dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ public void addScopeSequence(List<String> scopes) {

@Override
public LowLevelHttpRequest buildRequest(final String method, final String url) {
requestCount++;
this.request =
new MockLowLevelHttpRequest(url) {
@Override
Expand Down Expand Up @@ -188,4 +189,8 @@ public void setReturnExpiresIn(boolean returnExpiresIn) {
public void setReturnAccessBoundarySessionKey(boolean returnAccessBoundarySessionKey) {
this.returnAccessBoundarySessionKey = returnAccessBoundarySessionKey;
}

public int getRequestCount() {
return requestCount;
}
}

0 comments on commit 87d2e05

Please sign in to comment.