From b81dff92148fdbb7bedb90b81ac2f5ccd520626b Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Mon, 8 Jul 2013 19:32:33 -0700 Subject: [PATCH] Increase integration test timeout Increase time for CLI integration tests to account for @Grab downloads. --- .../java/org/springframework/cli/SampleIntegrationTests.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-cli/src/test/java/org/springframework/cli/SampleIntegrationTests.java b/spring-cli/src/test/java/org/springframework/cli/SampleIntegrationTests.java index 100b91873f..62fb3db4fc 100644 --- a/spring-cli/src/test/java/org/springframework/cli/SampleIntegrationTests.java +++ b/spring-cli/src/test/java/org/springframework/cli/SampleIntegrationTests.java @@ -73,7 +73,7 @@ public class SampleIntegrationTests { return command; } }); - this.command = future.get(30, TimeUnit.SECONDS); + this.command = future.get(4, TimeUnit.MINUTES); } @After