From 3d714d3016f88c4c84f95ae00692314c512725bb Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Mon, 28 Oct 2013 05:36:16 -0700 Subject: [PATCH] Allow snapshot repositories in integration tests Update CLI SampleIntegrationTests to no longer disable snapshot repos. --- .../org/springframework/boot/cli/SampleIntegrationTests.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-cli/src/test/java/org/springframework/boot/cli/SampleIntegrationTests.java b/spring-boot-cli/src/test/java/org/springframework/boot/cli/SampleIntegrationTests.java index 05dbd7abc10..a16b80638ad 100644 --- a/spring-boot-cli/src/test/java/org/springframework/boot/cli/SampleIntegrationTests.java +++ b/spring-boot-cli/src/test/java/org/springframework/boot/cli/SampleIntegrationTests.java @@ -71,7 +71,7 @@ public class SampleIntegrationTests { @Before public void setup() throws Exception { - System.setProperty("disableSpringSnapshotRepos", "true"); + System.setProperty("disableSpringSnapshotRepos", "false"); new CleanCommand().run("org.springframework"); }