Skip to content

Commit

Permalink
[FM] Automated formating backend
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Jun 14, 2024
1 parent 1e53d4a commit ddd504d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ void getTenantFromClaimsSetUsingClaimTenantReturnEmptyIfParsingOfClaimFailed() t

@DisplayName("getTenantFromClaimsSetUsingClaimIss() return tenant if claim iss is found")
@ParameterizedTest
@ValueSource(strings = {"https://sso.puzzle.ch/auth/realms/pitc", "http://localhost:8544/realms/pitc"})
@ValueSource(strings = { "https://sso.puzzle.ch/auth/realms/pitc", "http://localhost:8544/realms/pitc" })
void getTenantFromClaimsSetUsingClaimIssReturnTenantIfClaimIssFound(String issUrl) throws ParseException {
// arrange
JWTClaimsSet claimsSetMock = mock(JWTClaimsSet.class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ void getTenantFromTokenUsingClaimTenantReturnEmptyIfClaimTenantFoundButValueIsNu

@DisplayName("getTenantFromTokenUsingClaimIss() return tenant if claim iss is found")
@ParameterizedTest
@ValueSource(strings = {"https://sso.puzzle.ch/auth/realms/pitc", "http://localhost:8544/realms/pitc"})
@ValueSource(strings = { "https://sso.puzzle.ch/auth/realms/pitc", "http://localhost:8544/realms/pitc" })
void getTenantFromTokenUsingClaimIssReturnTenantIfClaimIssFound(String issUrl) {
// arrange
Jwt tokenMock = mock(Jwt.class);
Expand Down

0 comments on commit ddd504d

Please sign in to comment.