From 2ffbb3906293ab315498adfcaae68c104263c71a Mon Sep 17 00:00:00 2001 From: spencergibb Date: Fri, 9 Oct 2020 20:29:40 -0400 Subject: [PATCH] Unignores test --- .../cloud/consul/config/ConsulPropertySourceLocatorTests.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/spring-cloud-consul-config/src/test/java/org/springframework/cloud/consul/config/ConsulPropertySourceLocatorTests.java b/spring-cloud-consul-config/src/test/java/org/springframework/cloud/consul/config/ConsulPropertySourceLocatorTests.java index 07f87275..8636fe41 100644 --- a/spring-cloud-consul-config/src/test/java/org/springframework/cloud/consul/config/ConsulPropertySourceLocatorTests.java +++ b/spring-cloud-consul-config/src/test/java/org/springframework/cloud/consul/config/ConsulPropertySourceLocatorTests.java @@ -112,7 +112,6 @@ public class ConsulPropertySourceLocatorTests { } @Test - @Ignore // FIXME broken tests with boot 2.0.0 public void propertyLoadedAndUpdated() throws Exception { String testProp = this.environment.getProperty(TEST_PROP_CANONICAL); assertThat(testProp).as("testProp was wrong").isEqualTo(VALUE1); @@ -147,7 +146,7 @@ public class ConsulPropertySourceLocatorTests { .isEqualTo("testPropValInsert"); } - @Configuration(proxyBeanMethods = false) + @Configuration @EnableAutoConfiguration static class Config {