Remove special case for integration sample's milestone dependency

3d714d301 allowed all integration tests to download snapshots and
milestones. The test for the integration sample, which depends upon a
milestone, no longer needs to be a special case.
This commit is contained in:
Andy Wilkinson 2013-10-31 11:55:35 +00:00
parent a6a1929274
commit 45c61eb96b
1 changed files with 0 additions and 3 deletions

View File

@ -118,9 +118,6 @@ public class SampleIntegrationTests {
@Test
public void integrationSample() throws Exception {
// Depends on 1.0.0.M1 of spring-integration-dsl-groovy-core
System.clearProperty("disableSpringSnapshotRepos");
String output = this.cli.run("samples/integration.groovy");
assertTrue("Wrong output: " + output, output.contains("Hello, World"));
}