From a44f8bc59ef0ce8dae5f98cfddfda31e3d1d5b11 Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Tue, 3 Sep 2013 21:55:21 -0700 Subject: [PATCH] Increase SampleIntegrationTests run timeouts Increase the timeouts to give CI builds more time should dependencies be missing. --- .../org/springframework/boot/cli/SampleIntegrationTests.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 17dd6fad97..4b72d1274a 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 @@ -37,7 +37,7 @@ import static org.junit.Assert.assertTrue; /** * Integration tests to exercise the samples. - * + * * @author Dave Syer */ public class SampleIntegrationTests { @@ -63,7 +63,7 @@ public class SampleIntegrationTests { return command; } }); - this.command = future.get(4, TimeUnit.MINUTES); + this.command = future.get(6, TimeUnit.MINUTES); } @Before