Skip to content

Commit

Permalink
Polish
Browse files Browse the repository at this point in the history
  • Loading branch information
wilkinsona committed Oct 8, 2018
1 parent 1e0f2b6 commit 749fa96
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public void keyStoreProviderIsUsedWhenCreatingKeyStore() throws Exception {
ssl.setKeyPassword("password");
ssl.setKeyStore("src/test/resources/test.jks");
ssl.setKeyStoreProvider("com.example.KeyStoreProvider");
SslServerCustomizer customizer = new SslServerCustomizer(ssl, null);
SslServerCustomizer customizer = new SslServerCustomizer(ssl, null, null);
try {
customizer.getKeyManagerFactory(ssl, null);
fail();
Expand All @@ -56,7 +56,7 @@ public void trustStoreProviderIsUsedWhenCreatingTrustStore() throws Exception {
ssl.setTrustStorePassword("password");
ssl.setTrustStore("src/test/resources/test.jks");
ssl.setTrustStoreProvider("com.example.TrustStoreProvider");
SslServerCustomizer customizer = new SslServerCustomizer(ssl, null);
SslServerCustomizer customizer = new SslServerCustomizer(ssl, null, null);
try {
customizer.getTrustManagerFactory(ssl, null);
fail();
Expand Down

0 comments on commit 749fa96

Please sign in to comment.