This commit is contained in:
Stephane Nicoll 2015-06-29 06:19:19 -07:00
parent 269398f745
commit 31a6d53a95
1 changed files with 2 additions and 2 deletions

View File

@ -112,7 +112,7 @@ public class WebMvcAutoConfigurationTests {
}
@Test
public void handerAdaptersCreated() throws Exception {
public void handlerAdaptersCreated() throws Exception {
load();
assertEquals(3, this.context.getBeanNamesForType(HandlerAdapter.class).length);
assertFalse(this.context.getBean(RequestMappingHandlerAdapter.class)
@ -123,7 +123,7 @@ public class WebMvcAutoConfigurationTests {
}
@Test
public void handerMappingsCreated() throws Exception {
public void handlerMappingsCreated() throws Exception {
load();
assertEquals(6, this.context.getBeanNamesForType(HandlerMapping.class).length);
}