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 2020/12/27 14:35:27 UTC

[groovy] branch master updated: Format test code

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 578d8b5  Format test code
578d8b5 is described below

commit 578d8b5ae7ce7a1724dd1cf07cede2291fbb0bc0
Author: Daniel Sun <su...@apache.org>
AuthorDate: Sun Dec 27 22:35:02 2020 +0800

    Format test code
---
 .../groovy-ginq/src/spec/test/org/apache/groovy/ginq/GinqTest.groovy   | 3 ++-
 1 file changed, 2 insertions(+), 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 8ffe729..2f29c6b 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
@@ -5180,7 +5180,8 @@ class GinqTest {
     void "testGinq - window - 45"() {
         assertGinqScript '''
 // tag::ginq_winfunction_26[]
-            assert [[2, 6, 3, 1, 3, 4], [1, 6, 3, 1, 3, 4], [3, 6, 3, 1, 3, 4], [null, 6, 3, 1, 3, 4]] == GQ {
+            assert [[2, 6, 3, 1, 3, 4], [1, 6, 3, 1, 3, 4],
+                    [3, 6, 3, 1, 3, 4], [null, 6, 3, 1, 3, 4]] == GQ {
                 from n in [2, 1, 3, null]
                 select n, (sum(n) over()), 
                           (max(n) over()),