Browse Source

Fix build failure

pull/5855/head
Stephane Nicoll 10 years ago
parent
commit
3151df624a
  1. 2
      spring-boot/src/test/java/org/springframework/boot/bind/PropertiesConfigurationFactoryTests.java

2
spring-boot/src/test/java/org/springframework/boot/bind/PropertiesConfigurationFactoryTests.java

@ -173,7 +173,7 @@ public class PropertiesConfigurationFactoryTests { @@ -173,7 +173,7 @@ public class PropertiesConfigurationFactoryTests {
@Test
public void propertyWithAllUpperCaseInTheMiddleCanBeBound() throws Exception {
Foo foo = createFoo("foo-d-l-q-bar:baz");
assertEquals("baz", foo.fooDLQBar);
assertThat(foo.fooDLQBar).isEqualTo(("baz"));
}
private Foo createFoo(final String values) throws Exception {

Loading…
Cancel
Save