Commit 0c1cf731 authored by Andy Wilkinson's avatar Andy Wilkinson

Fix assertion to use AssertJ

parent 0b2f912c
...@@ -167,7 +167,7 @@ public class PropertiesConfigurationFactoryTests { ...@@ -167,7 +167,7 @@ public class PropertiesConfigurationFactoryTests {
@Test @Test
public void propertyWithAllUpperCaseSuffixCanBeBound() throws Exception { public void propertyWithAllUpperCaseSuffixCanBeBound() throws Exception {
Foo foo = createFoo("foo-bar-u-r-i:baz"); Foo foo = createFoo("foo-bar-u-r-i:baz");
assertEquals("baz", foo.fooBarURI); assertThat(foo.fooBarURI).isEqualTo("baz");
} }
private Foo createFoo(final String values) throws Exception { private Foo createFoo(final String values) throws Exception {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment