From 03fce55cdb1477fdd7992fb1f1da255db1134293 Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Mon, 27 Nov 2017 10:43:16 +0000 Subject: [PATCH] Polish "Remove a redundant dash in TestPropertyValues.Type" Closes gh-11156 --- .../boot/test/util/TestPropertyValuesTests.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot-test/src/test/java/org/springframework/boot/test/util/TestPropertyValuesTests.java b/spring-boot-project/spring-boot-test/src/test/java/org/springframework/boot/test/util/TestPropertyValuesTests.java index 06eb47407f3..79f6708aa42 100644 --- a/spring-boot-project/spring-boot-test/src/test/java/org/springframework/boot/test/util/TestPropertyValuesTests.java +++ b/spring-boot-project/spring-boot-test/src/test/java/org/springframework/boot/test/util/TestPropertyValuesTests.java @@ -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