Skip to content

Commit

Permalink
[ELY-2613] Update an assertEquals call in ScramServerCompatibilityTes…
Browse files Browse the repository at this point in the history
…t#testAllowedAuthorizationId so that the expected value and actual value are passed in the correct order
  • Loading branch information
ericrleung committed Oct 6, 2023
1 parent f851894 commit 6c4b482
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ public void testAllowedAuthorizationId() throws Exception {
assertEquals("v=xzTfS758LckdRoQKN/ZFY/Bauxo=", new String(message, StandardCharsets.UTF_8));

assertTrue(saslServer.isComplete());
assertEquals(saslServer.getAuthorizationID(), "user");
assertEquals("user", saslServer.getAuthorizationID());
}

/**
Expand Down

0 comments on commit 6c4b482

Please sign in to comment.