This is an automated email from the ASF dual-hosted git repository. sunlan 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 6bc166cd03 Tweak a test case for GINQ 6bc166cd03 is described below commit 6bc166cd0340dd53624fcea953be5cb726658283 Author: Daniel Sun <sun...@apache.org> AuthorDate: Tue Jul 29 02:03:48 2025 +0900 Tweak a test case for GINQ --- .../groovy-ginq/src/spec/test/org/apache/groovy/ginq/GinqTest.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subprojects/groovy-ginq/src/spec/test/org/apache/groovy/ginq/GinqTest.groovy b/subprojects/groovy-ginq/src/spec/test/org/apache/groovy/ginq/GinqTest.groovy index 662d4ae042..83072152ba 100644 --- a/subprojects/groovy-ginq/src/spec/test/org/apache/groovy/ginq/GinqTest.groovy +++ b/subprojects/groovy-ginq/src/spec/test/org/apache/groovy/ginq/GinqTest.groovy @@ -774,7 +774,7 @@ class GinqTest { assertGinqScript ''' assert [2] == GQ { from n in [1, 2, 3] - where n == (from m in [2] select m) + where n == (from m in [3, 2, 4] orderby m limit 1 select m) select n }.toList() '''