Skip to content

Commit

Permalink
Fix URLSafeJWTTestCase
Browse files Browse the repository at this point in the history
  • Loading branch information
ashera96 committed Sep 11, 2023
1 parent 51e8060 commit 29d5aef
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ public void testEnableJWTAndClaimsForJWTApp() 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);

// check default claims
Expand Down

0 comments on commit 29d5aef

Please sign in to comment.