You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@groovy.apache.org by pa...@apache.org on 2015/06/09 23:03:07 UTC

incubator-groovy git commit: ASTTransformationCustomizerTest.testAnyExpressionAsParameterValue fails from time to time on the ci-server, so try to make it more stable by giving it more time to succeed

Repository: incubator-groovy
Updated Branches:
  refs/heads/GROOVY_2_4_X 84eb44997 -> 5021a807f


ASTTransformationCustomizerTest.testAnyExpressionAsParameterValue fails from time to time on the ci-server, so try to make it more stable by giving it more time to succeed


Project: http://git-wip-us.apache.org/repos/asf/incubator-groovy/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-groovy/commit/5021a807
Tree: http://git-wip-us.apache.org/repos/asf/incubator-groovy/tree/5021a807
Diff: http://git-wip-us.apache.org/repos/asf/incubator-groovy/diff/5021a807

Branch: refs/heads/GROOVY_2_4_X
Commit: 5021a807f18e9bb68b85ac37df78f3cea8cf6ba9
Parents: 84eb449
Author: pascalschumacher <pa...@gmx.net>
Authored: Tue Jun 9 23:02:50 2015 +0200
Committer: pascalschumacher <pa...@gmx.net>
Committed: Tue Jun 9 23:02:50 2015 +0200

----------------------------------------------------------------------
 .../control/customizers/ASTTransformationCustomizerTest.groovy     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-groovy/blob/5021a807/src/test/org/codehaus/groovy/control/customizers/ASTTransformationCustomizerTest.groovy
----------------------------------------------------------------------
diff --git a/src/test/org/codehaus/groovy/control/customizers/ASTTransformationCustomizerTest.groovy b/src/test/org/codehaus/groovy/control/customizers/ASTTransformationCustomizerTest.groovy
index eb5c4aa..8b6caa6 100644
--- a/src/test/org/codehaus/groovy/control/customizers/ASTTransformationCustomizerTest.groovy
+++ b/src/test/org/codehaus/groovy/control/customizers/ASTTransformationCustomizerTest.groovy
@@ -192,7 +192,7 @@ class ASTTransformationCustomizerTest extends GroovyTestCase {
 
 boolean interrupted = false
 try {
-    50.times {
+    100.times {
         Thread.sleep(100)
     }
 } catch (TimeoutException e) {