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

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


The following commit(s) were added to refs/heads/GROOVY_3_0_X by this push:
     new a94862d344 fix test case
a94862d344 is described below

commit a94862d34413ab10a0e47276ca310e5c6630bcae
Author: Eric Milles <[email protected]>
AuthorDate: Mon Oct 20 14:52:29 2025 -0500

    fix test case
---
 src/test/groovy/transform/stc/CoercionSTCTest.groovy | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/test/groovy/transform/stc/CoercionSTCTest.groovy 
b/src/test/groovy/transform/stc/CoercionSTCTest.groovy
index 3d91832568..fa9ada9b11 100644
--- a/src/test/groovy/transform/stc/CoercionSTCTest.groovy
+++ b/src/test/groovy/transform/stc/CoercionSTCTest.groovy
@@ -483,7 +483,7 @@ class CoercionSTCTest extends StaticTypeCheckingTestCase {
             import static org.awaitility.Awaitility.await
 
             List<String> strings = ['x']
-            await().until { -> strings }
+            await().until { -> strings.asBoolean() }
         '''
     }
 

Reply via email to