Fix test due to API changes in spring cloud config

This commit is contained in:
Ryan Baxter
2018-05-31 14:54:23 -04:00
parent 321e7f77af
commit 47f621d149

View File

@@ -1,5 +1,6 @@
package demo;
import static org.junit.Assert.assertArrayEquals;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
@@ -25,7 +26,7 @@ public class BootstrapDecryptionClientApplicationTests {
@Test
public void contextLoads() throws Exception {
assertEquals("http://localhost:8888", this.config.getUri());
assertArrayEquals(new String[]{"http://localhost:8888"}, this.config.getUri());
assertNotNull(this.locator);
}