This is an automated email from the ASF dual-hosted git repository.
paulk-asert 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 40b9540b47 tweak test for slow CI
40b9540b47 is described below
commit 40b9540b47eebf6e8709fbd46f367478511c0e4b
Author: Paul King <[email protected]>
AuthorDate: Mon Sep 7 08:24:07 2026 +1000
tweak test for slow CI
---
.../groovy/groovy/concurrent/BroadcastChannelAsPublisherTest.groovy | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/src/test/groovy/groovy/concurrent/BroadcastChannelAsPublisherTest.groovy
b/src/test/groovy/groovy/concurrent/BroadcastChannelAsPublisherTest.groovy
index 89ff748051..0cea5af7a2 100644
--- a/src/test/groovy/groovy/concurrent/BroadcastChannelAsPublisherTest.groovy
+++ b/src/test/groovy/groovy/concurrent/BroadcastChannelAsPublisherTest.groovy
@@ -207,7 +207,7 @@ final class BroadcastChannelAsPublisherTest {
def publisher = broadcast.asPublisher()
async {
- Thread.sleep(30) // let consumer subscribe
+ Thread.sleep(50) // let consumer subscribe
['x', 'y', 'z'].each { broadcast.send(it) }
broadcast.close()
}