You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by pa...@apache.org on 2020/10/11 23:28:55 UTC

[groovy] branch master updated: try to improve test robustness on CI

This is an automated email from the ASF dual-hosted git repository.

paulk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/groovy.git


The following commit(s) were added to refs/heads/master by this push:
     new a71e822  try to improve test robustness on CI
a71e822 is described below

commit a71e822738da0cba39a5257fa2142cbacde26158
Author: Paul King <pa...@asert.com.au>
AuthorDate: Mon Oct 12 09:28:43 2020 +1000

    try to improve test robustness on CI
---
 .../groovy/control/customizers/ASTTransformationCustomizerTest.groovy   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/test/org/codehaus/groovy/control/customizers/ASTTransformationCustomizerTest.groovy b/src/test/org/codehaus/groovy/control/customizers/ASTTransformationCustomizerTest.groovy
index b861ed8..9dbcb5e 100644
--- a/src/test/org/codehaus/groovy/control/customizers/ASTTransformationCustomizerTest.groovy
+++ b/src/test/org/codehaus/groovy/control/customizers/ASTTransformationCustomizerTest.groovy
@@ -128,7 +128,7 @@ class ASTTransformationCustomizerTest extends GroovyTestCase {
 
 boolean interrupted = false
 try {
-    100.times {
+    200.times {
         Thread.sleep(100)
     }
 } catch (TimeoutException e) {