You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by su...@apache.org on 2022/07/03 10:30:18 UTC

[groovy] branch GROOVY_4_0_X updated: Simplify the test case for GINQ

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 5fa5470986 Simplify the test case for GINQ
5fa5470986 is described below

commit 5fa54709860d9aaeb040f2e5c22c19aed4d0f2b4
Author: Daniel Sun <su...@apache.org>
AuthorDate: Sun Jul 3 18:27:42 2022 +0800

    Simplify the test case for GINQ
    
    (cherry picked from commit a2a91b6f9debc15a6c0fd1a55e2c5913d90255be)
---
 .../groovy-ginq/src/spec/test/org/apache/groovy/ginq/GinqTest.groovy     | 1 -
 1 file changed, 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 b0be6e27f1..2c0db251ec 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
@@ -6229,7 +6229,6 @@ class GinqTest {
         assertGinqScript '''
             def r = GQ {
                 from n in [2, 1, 3]
-                join m in [2, 1, 3] on m == n
                 select n, (lag(n) over(orderby n)) as lagN
             }
             def expected = """