tomaswolf commented on code in PR #546: URL: https://github.com/apache/mina-sshd/pull/546#discussion_r1692868168
########## sshd-common/src/test/java/org/apache/sshd/client/auth/password/PasswordIdentityProviderTest.java: ########## @@ -69,7 +70,7 @@ public void testMultiProvider() throws IOException, GeneralSecurityException { private static void assertProviderContents(String message, PasswordIdentityProvider p, Iterable<String> expected) throws IOException, GeneralSecurityException { - assertNotNull(message + ": no provider", p); + assertNotNull(p, message + ": no provider"); assertEquals(message, expected, p.loadPasswords(null)); Review Comment: Shouldn't the message be at the end here? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@mina.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@mina.apache.org For additional commands, e-mail: dev-h...@mina.apache.org