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/10/06 13:36:34 UTC

[groovy] 09/22: GROOVY-8258: rename test names

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

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

commit 581ee9525c73f5761a6b0f9f37fd3c6416567816
Author: Daniel Sun <su...@apache.org>
AuthorDate: Mon Oct 5 04:34:26 2020 +0800

    GROOVY-8258: rename test names
---
 .../src/test/groovy/org/apache/groovy/linq/LinqTest.groovy          | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/subprojects/groovy-linq/src/test/groovy/org/apache/groovy/linq/LinqTest.groovy b/subprojects/groovy-linq/src/test/groovy/org/apache/groovy/linq/LinqTest.groovy
index b2b0887..30ad372 100644
--- a/subprojects/groovy-linq/src/test/groovy/org/apache/groovy/linq/LinqTest.groovy
+++ b/subprojects/groovy-linq/src/test/groovy/org/apache/groovy/linq/LinqTest.groovy
@@ -28,7 +28,7 @@ import static groovy.test.GroovyAssert.assertScript
 @CompileStatic
 class LinqTest {
     @Test
-    void "testLinqMacroMethod - from select - 1"() {
+    void "testLinq - from select - 1"() {
         assertScript '''
             def numbers = [0, 1, 2]
             assert [0, 1, 2] == LINQ {
@@ -39,7 +39,7 @@ class LinqTest {
     }
 
     @Test
-    void "testLinqMacroMethod - from select - 2"() {
+    void "testLinq - from select - 2"() {
         assertScript '''
             def numbers = [0, 1, 2]
             assert [0, 2, 4] == LINQ {
@@ -50,7 +50,7 @@ class LinqTest {
     }
 
     @Test
-    void "testLinqMacroMethod - from where select"() {
+    void "testLinq - from where select"() {
         assertScript '''
             def numbers = [0, 1, 2, 3, 4, 5]
             assert [2, 4, 6] == LINQ {