Skip to content

Commit

Permalink
fix(jans-auth-server): sonar smell fix
Browse files Browse the repository at this point in the history
Native SSO

#2518
  • Loading branch information
yuriyz committed Oct 26, 2022
1 parent 69b0731 commit 79fe5c2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ public void addDeviceSecretToSession_withDeviceSsoScope_shouldGenerateDeviceSecr

assertTrue(sessionId.getDeviceSecrets().isEmpty());
authzRequestService.addDeviceSecretToSession(authzRequest, sessionId);
assertEquals(1, sessionId.getDeviceSecrets().size());
assertEquals(sessionId.getDeviceSecrets().size(), 1);
assertTrue(StringUtils.isNotBlank(sessionId.getDeviceSecrets().get(0)));
}

Expand Down

0 comments on commit 79fe5c2

Please sign in to comment.