From b215d861e44df910f3d760ddf1ce98d32a9f244c Mon Sep 17 00:00:00 2001 From: Jonathan Fuerth Date: Wed, 7 Dec 2011 12:25:28 -0500 Subject: [PATCH] Up timeout to 20s because 3s wasn't enough on slow machines --- .../src/test/java/client/local/AppIntegrationTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cdi-quickstart/src/main/resources/archetype-resources/src/test/java/client/local/AppIntegrationTest.java b/cdi-quickstart/src/main/resources/archetype-resources/src/test/java/client/local/AppIntegrationTest.java index efe3807..7770feb 100644 --- a/cdi-quickstart/src/main/resources/archetype-resources/src/test/java/client/local/AppIntegrationTest.java +++ b/cdi-quickstart/src/main/resources/archetype-resources/src/test/java/client/local/AppIntegrationTest.java @@ -43,9 +43,9 @@ public void run() { } }); - // This call tells GWT's test runner to wait 3000ms after the test returns. + // This call tells GWT's test runner to wait 20 seconds after the test returns. // We need this delay to give the HelloMessage time to come back from the server. - delayTestFinish(3000); + delayTestFinish(20000); } public void testButtonClickUpdatesLabel() throws Exception {