Fix build failure

This commit is contained in:
Stephane Nicoll 2016-06-27 12:12:07 +02:00
parent e9fb51bdd7
commit 3151df624a
1 changed files with 1 additions and 1 deletions

View File

@ -173,7 +173,7 @@ public class PropertiesConfigurationFactoryTests {
@Test @Test
public void propertyWithAllUpperCaseInTheMiddleCanBeBound() throws Exception { public void propertyWithAllUpperCaseInTheMiddleCanBeBound() throws Exception {
Foo foo = createFoo("foo-d-l-q-bar:baz"); 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 { private Foo createFoo(final String values) throws Exception {