Skip to content

Commit

Permalink
Fix URLSafeJWTTestCase
Browse files Browse the repository at this point in the history
  • Loading branch information
ashera96 committed Sep 13, 2023
1 parent 795bcd6 commit 25fb718
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ public void testEnableJWTAndClaimsForOauthApp() throws Exception {
JSONObject jsonHeaderObject = new JSONObject(decodedJWTHeaderString);
Assert.assertEquals(jsonHeaderObject.getString("typ"), "JWT");
Assert.assertEquals(jsonHeaderObject.getString("alg"), "RS256");
Assert.assertFalse(jsonHeaderObject.has("kid"));
Assert.assertTrue(jsonHeaderObject.has("kid"));
JSONObject jsonObject = new JSONObject(decodedJWTString);
log.info("JWT Received ==" + jsonObject.toString());
// check default claims
Expand Down

0 comments on commit 25fb718

Please sign in to comment.