From 749fa96a8b57f48a68f4644b501b54b02ab312c2 Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Mon, 8 Oct 2018 13:34:25 +0100 Subject: [PATCH] Polish --- .../boot/web/embedded/netty/SslServerCustomizerTests.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-boot-project/spring-boot/src/test/java/org/springframework/boot/web/embedded/netty/SslServerCustomizerTests.java b/spring-boot-project/spring-boot/src/test/java/org/springframework/boot/web/embedded/netty/SslServerCustomizerTests.java index 02edd88871..17ed85276a 100644 --- a/spring-boot-project/spring-boot/src/test/java/org/springframework/boot/web/embedded/netty/SslServerCustomizerTests.java +++ b/spring-boot-project/spring-boot/src/test/java/org/springframework/boot/web/embedded/netty/SslServerCustomizerTests.java @@ -38,7 +38,7 @@ public class SslServerCustomizerTests { 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(); @@ -56,7 +56,7 @@ public class SslServerCustomizerTests { 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();