Remove missing module from pom (thanks Eclipse)

This commit is contained in:
Dave Syer 2014-10-28 16:14:31 +00:00
parent d71afe0918
commit af2a867d14
1 changed files with 1 additions and 1 deletions

View File

@ -184,7 +184,7 @@ public class SpringApplicationBuilderTests {
ExampleConfig.class).profiles("node").properties("transport=redis")
.child(ChildConfig.class).profiles("admin").web(false);
this.context = application.run();
assertThat(this.context.getEnvironment().acceptsProfiles("node"), is(true));
assertThat(this.context.getEnvironment().acceptsProfiles("node", "admin"), is(true));
assertThat(this.context.getParent().getEnvironment().acceptsProfiles("admin"),
is(false));
}