From 3151df624a55eef032290a05b899f5ea5ceace9a Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Mon, 27 Jun 2016 12:12:07 +0200 Subject: [PATCH] Fix build failure --- .../boot/bind/PropertiesConfigurationFactoryTests.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot/src/test/java/org/springframework/boot/bind/PropertiesConfigurationFactoryTests.java b/spring-boot/src/test/java/org/springframework/boot/bind/PropertiesConfigurationFactoryTests.java index ac3bfdd4daf..d827da30d88 100644 --- a/spring-boot/src/test/java/org/springframework/boot/bind/PropertiesConfigurationFactoryTests.java +++ b/spring-boot/src/test/java/org/springframework/boot/bind/PropertiesConfigurationFactoryTests.java @@ -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 {