Fix incomplete assertions
Closes gh-7907
This commit is contained in:
committed by
Stephane Nicoll
parent
b9eda3f26b
commit
f896ff9a10
@@ -816,7 +816,7 @@ public class SpringApplicationTests {
|
||||
this.context = application.run();
|
||||
assertThat(this.context.getEnvironment())
|
||||
.isNotInstanceOf(StandardServletEnvironment.class);
|
||||
assertThat(this.context.getEnvironment().getProperty("foo"));
|
||||
assertThat(this.context.getEnvironment().getProperty("foo")).isEqualTo("bar");
|
||||
assertThat(this.context.getEnvironment().getPropertySources().iterator().next()
|
||||
.getName()).isEqualTo(
|
||||
TestPropertySourceUtils.INLINED_PROPERTIES_PROPERTY_SOURCE_NAME);
|
||||
|
||||
Reference in New Issue
Block a user