File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/test/java/org/gridsuite/gateway Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ public class TokenValidationTest {
88
88
89
89
private String expiredToken ;
90
90
91
- private String tokenWithNotAllowedissuer ;
91
+ private String tokenWithNotAllowedIssuer ;
92
92
93
93
private RSAKey rsaKey ;
94
94
@@ -157,7 +157,7 @@ public void prepareToken() throws JOSEException {
157
157
token = signedJWT .serialize ();
158
158
token2 = signedJWT2 .serialize ();
159
159
expiredToken = signedJWTExpired .serialize ();
160
- tokenWithNotAllowedissuer = signedJWTWithIssuerNotAllowed .serialize ();
160
+ tokenWithNotAllowedIssuer = signedJWTWithIssuerNotAllowed .serialize ();
161
161
}
162
162
163
163
private void testWebsocket (String name ) throws InterruptedException {
@@ -524,7 +524,7 @@ public void invalidToken() {
524
524
//test with with not allowed issuer
525
525
webClient
526
526
.get ().uri ("case/v1/cases" )
527
- .header ("Authorization" , "Bearer " + tokenWithNotAllowedissuer )
527
+ .header ("Authorization" , "Bearer " + tokenWithNotAllowedIssuer )
528
528
.exchange ()
529
529
.expectStatus ().isEqualTo (401 );
530
530
You can’t perform that action at this time.
0 commit comments