Polish tests

Closes gh-3946
This commit is contained in:
izeye 2015-09-12 00:34:29 +09:00 committed by Stephane Nicoll
parent 3444ebbc05
commit 17d0dc5a86
2 changed files with 1 additions and 2 deletions

View File

@ -97,7 +97,6 @@ public class PropertiesConfigurationFactoryTests {
this.factory.setPropertySources(propertySources);
this.factory.setIgnoreUnknownFields(false);
this.factory.afterPropertiesSet();
this.factory.getObject();
Foo foo = this.factory.getObject();
assertEquals("bar", foo.name);
}

View File

@ -88,7 +88,7 @@ public class ConfigurationPropertiesBindingPostProcessorTests {
}
@Test
public void unknonwFieldFailureMessageContainsDetailsOfPropertyOrigin() {
public void unknownFieldFailureMessageContainsDetailsOfPropertyOrigin() {
this.context = new AnnotationConfigApplicationContext();
EnvironmentTestUtils.addEnvironment(this.context, "com.example.baz:spam");
this.context.register(TestConfiguration.class);