Allow snapshot repositories in integration tests

Update CLI SampleIntegrationTests to no longer disable snapshot repos.
This commit is contained in:
Phillip Webb 2013-10-28 05:36:16 -07:00
parent 19b74461e4
commit 3d714d3016
1 changed files with 1 additions and 1 deletions

View File

@ -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");
}