Skip to content

Commit 74fd429

Browse files
typo
1 parent 0a19edb commit 74fd429

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/test/java/org/gridsuite/gateway/TokenValidationTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ public class TokenValidationTest {
8888

8989
private String expiredToken;
9090

91-
private String tokenWithNotAllowedissuer;
91+
private String tokenWithNotAllowedIssuer;
9292

9393
private RSAKey rsaKey;
9494

@@ -157,7 +157,7 @@ public void prepareToken() throws JOSEException {
157157
token = signedJWT.serialize();
158158
token2 = signedJWT2.serialize();
159159
expiredToken = signedJWTExpired.serialize();
160-
tokenWithNotAllowedissuer = signedJWTWithIssuerNotAllowed.serialize();
160+
tokenWithNotAllowedIssuer = signedJWTWithIssuerNotAllowed.serialize();
161161
}
162162

163163
private void testWebsocket(String name) throws InterruptedException {
@@ -524,7 +524,7 @@ public void invalidToken() {
524524
//test with with not allowed issuer
525525
webClient
526526
.get().uri("case/v1/cases")
527-
.header("Authorization", "Bearer " + tokenWithNotAllowedissuer)
527+
.header("Authorization", "Bearer " + tokenWithNotAllowedIssuer)
528528
.exchange()
529529
.expectStatus().isEqualTo(401);
530530

0 commit comments

Comments
 (0)