Polish "Remove a redundant dash in TestPropertyValues.Type"

Closes gh-11156
This commit is contained in:
Andy Wilkinson 2017-11-27 10:43:16 +00:00
parent f21737a675
commit 03fce55cdb
1 changed files with 2 additions and 1 deletions

View File

@ -58,7 +58,8 @@ public class TestPropertyValuesTests {
Type.SYSTEM_ENVIRONMENT);
assertThat(this.environment.getProperty("foo.bar")).isEqualTo("BAZ");
assertThat(this.environment.getPropertySources().contains(
"test-" + StandardEnvironment.SYSTEM_ENVIRONMENT_PROPERTY_SOURCE_NAME)).isTrue();
"test-" + StandardEnvironment.SYSTEM_ENVIRONMENT_PROPERTY_SOURCE_NAME))
.isTrue();
}
@Test