Commit af2a867d authored by Dave Syer's avatar Dave Syer

Remove missing module from pom (thanks Eclipse)

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