Fix typo in tests

pull/2165/merge
izeye 10 years ago committed by Stephane Nicoll
parent f4fbc3e339
commit d5435da495

@ -312,10 +312,10 @@ public abstract class AbstractEmbeddedServletContainerFactoryTests {
@Test @Test
public void basicSsl() throws Exception { public void basicSsl() throws Exception {
testBasicSllWithKeystore("src/test/resources/test.jks"); testBasicSslWithKeyStore("src/test/resources/test.jks");
} }
protected final void testBasicSllWithKeystore(String keyStore) throws Exception { protected final void testBasicSslWithKeyStore(String keyStore) throws Exception {
FileCopyUtils.copy("test", FileCopyUtils.copy("test",
new FileWriter(this.temporaryFolder.newFile("test.txt"))); new FileWriter(this.temporaryFolder.newFile("test.txt")));

@ -156,7 +156,7 @@ public class JettyEmbeddedServletContainerFactoryTests extends
@Test @Test
public void basicSslClasspathKeyStore() throws Exception { public void basicSslClasspathKeyStore() throws Exception {
testBasicSllWithKeystore("classpath:test.jks"); testBasicSslWithKeyStore("classpath:test.jks");
} }
} }

@ -129,7 +129,7 @@ public class UndertowEmbeddedServletContainerFactoryTests extends
@Test @Test
public void basicSslClasspathKeyStore() throws Exception { public void basicSslClasspathKeyStore() throws Exception {
testBasicSllWithKeystore("classpath:test.jks"); testBasicSslWithKeyStore("classpath:test.jks");
} }
} }

Loading…
Cancel
Save