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 2016/03/06 20:36:56 UTC

groovy git commit: made GroovyClosureMethodsTest#testRunAfter more stable

Repository: groovy
Updated Branches:
  refs/heads/master b8514f1d6 -> c2d80bc8b


made GroovyClosureMethodsTest#testRunAfter more stable


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

Branch: refs/heads/master
Commit: c2d80bc8b1bf84575cf03710a1ead6ca21037f39
Parents: b8514f1
Author: pascalschumacher <pa...@gmx.net>
Authored: Sun Mar 6 20:36:39 2016 +0100
Committer: pascalschumacher <pa...@gmx.net>
Committed: Sun Mar 6 20:36:39 2016 +0100

----------------------------------------------------------------------
 src/test/groovy/GroovyClosureMethodsTest.groovy | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/groovy/blob/c2d80bc8/src/test/groovy/GroovyClosureMethodsTest.groovy
----------------------------------------------------------------------
diff --git a/src/test/groovy/GroovyClosureMethodsTest.groovy b/src/test/groovy/GroovyClosureMethodsTest.groovy
index 1019f87..937798b 100644
--- a/src/test/groovy/GroovyClosureMethodsTest.groovy
+++ b/src/test/groovy/GroovyClosureMethodsTest.groovy
@@ -169,7 +169,7 @@ class GroovyClosureMethodsTest extends GroovyTestCase {
             latch.countDown()
         }
         assert latch.getCount() == 1
-        latch.await(1000L, TimeUnit.MILLISECONDS)
+        latch.await(2000L, TimeUnit.MILLISECONDS)
         assert latch.getCount() == 0
     }