From c5d46d0cab54997f1a52f25296e23e5a39425091 Mon Sep 17 00:00:00 2001 From: Dave Syer Date: Fri, 13 Jun 2014 12:24:02 +0100 Subject: [PATCH] Re-instate test when fixed --- .../ConfigurationPropertiesBindingPostProcessorTests.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/spring-boot/src/test/java/org/springframework/boot/context/properties/ConfigurationPropertiesBindingPostProcessorTests.java b/spring-boot/src/test/java/org/springframework/boot/context/properties/ConfigurationPropertiesBindingPostProcessorTests.java index d822ca1d96..f58fcb6413 100644 --- a/spring-boot/src/test/java/org/springframework/boot/context/properties/ConfigurationPropertiesBindingPostProcessorTests.java +++ b/spring-boot/src/test/java/org/springframework/boot/context/properties/ConfigurationPropertiesBindingPostProcessorTests.java @@ -20,7 +20,6 @@ import javax.annotation.PostConstruct; import javax.validation.constraints.NotNull; import org.junit.After; -import org.junit.Ignore; import org.junit.Test; import org.springframework.beans.factory.BeanCreationException; import org.springframework.beans.factory.annotation.Value; @@ -133,7 +132,6 @@ public class ConfigurationPropertiesBindingPostProcessorTests { } @Test - @Ignore("WIP") public void testValueBindingForDefaults() throws Exception { this.context = new AnnotationConfigApplicationContext(); EnvironmentTestUtils.addEnvironment(this.context, "default.value:foo"); @@ -294,6 +292,7 @@ public class ConfigurationPropertiesBindingPostProcessorTests { return this.value; } + @Bean public static PropertySourcesPlaceholderConfigurer configurer() { return new PropertySourcesPlaceholderConfigurer(); }