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

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


The following commit(s) were added to refs/heads/GROOVY_4_0_X by this push:
     new 0204002337 Tweak a test case for GINQ
0204002337 is described below

commit 02040023378421ee10f9cee909be59a0170c380b
Author: Daniel Sun <[email protected]>
AuthorDate: Tue Jul 29 02:03:48 2025 +0900

    Tweak a test case for GINQ
    
    (cherry picked from commit 6bc166cd0340dd53624fcea953be5cb726658283)
---
 .../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()
         '''

Reply via email to