formatting

This commit is contained in:
spencergibb
2020-05-27 15:16:38 -04:00
parent f470b52f1b
commit 5d5a1925d0

View File

@@ -439,8 +439,7 @@ public class EnvironmentControllerTests {
String text = this.controller.properties("foo", "bar", true).getBody();
Properties properties = new Properties();
properties.load(new StringReader(text));
assertThat(properties).containsOnly(entry("a.b.c", "bar"),
entry("foo", "bar"));
assertThat(properties).containsOnly(entry("a.b.c", "bar"), entry("foo", "bar"));
}
@Test