Fix typo in tests

This commit is contained in:
izeye
2014-12-16 16:27:42 +09:00
committed by Stephane Nicoll
parent f4fbc3e339
commit d5435da495
3 changed files with 4 additions and 4 deletions

View File

@@ -312,10 +312,10 @@ public abstract class AbstractEmbeddedServletContainerFactoryTests {
@Test
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",
new FileWriter(this.temporaryFolder.newFile("test.txt")));

View File

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

View File

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