- try common format

This commit is contained in:
Iger
2017-12-03 20:25:26 +02:00
parent a014567c9e
commit 0e981f7656

View File

@@ -37,7 +37,7 @@ public class IntegrationTest {
SSHClient sshClient = new SSHClient(new DefaultConfig());
sshClient.addHostKeyVerifier(new PromiscuousVerifier());
sshClient.connect("127.0.0.1", 2222);
sshClient.authPublickey("sickp", "src/test/resources/id_rsa.ppk");
sshClient.authPublickey("sickp", "src/test/resources/id_rsa");
assertThat("Is connected", sshClient.isAuthenticated());
}
}