Commit 82c61421 authored by Stephane Nicoll's avatar Stephane Nicoll

Merge pull request #2165 from izeye/master

* pull2165:
  Fix typo in tests
parents f4fbc3e3 d5435da4
...@@ -312,10 +312,10 @@ public abstract class AbstractEmbeddedServletContainerFactoryTests { ...@@ -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 ...@@ -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 ...@@ -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");
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment