Skip to content

Commit

Permalink
Use assertNull instead of assertEquals(null, ...
Browse files Browse the repository at this point in the history
  • Loading branch information
eva-mueller-coremedia committed Jan 20, 2025
1 parent 0e10ab1 commit fcdbe04
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ public void testMinimal() throws Exception {
assertEquals("sub", oicSecurityRealm.getUserNameField());
assertTrue(oicSecurityRealm.isLogoutFromOpenidProvider());
assertFalse(oicSecurityRealm.isRootURLFromRequest());
assertEquals(null, serverConf.getJwksServerUrl());
assertNull(serverConf.getJwksServerUrl());
assertFalse(oicSecurityRealm.isDisableTokenVerification());
}

Expand Down

0 comments on commit fcdbe04

Please sign in to comment.