You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by pa...@apache.org on 2022/08/26 06:27:52 UTC

[groovy] 06/06: minor test refactor - fix test name

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

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

commit 68bbbeff6aacb51a6571d2ca829940efcbce32f2
Author: Paul King <pa...@asert.com.au>
AuthorDate: Fri Aug 26 00:32:10 2022 +1000

    minor test refactor - fix test name
---
 src/test/groovy/bugs/Groovy8026Bug.groovy | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/test/groovy/bugs/Groovy8026Bug.groovy b/src/test/groovy/bugs/Groovy8026Bug.groovy
index ef0ec4ca87..99a55b9394 100644
--- a/src/test/groovy/bugs/Groovy8026Bug.groovy
+++ b/src/test/groovy/bugs/Groovy8026Bug.groovy
@@ -21,7 +21,7 @@ package groovy.bugs
 import groovy.test.GroovyTestCase
 
 class Groovy8026Bug extends GroovyTestCase {
-    void testJavaBeanPropertiesAvailableInInnerClasses() {
+    void testMatcherGetAtCases() {
         assertScript '''
             def mm = '1 2 3 4 5 6 7 8 9' =~ /\\d/
             assert mm.collect { it }.toString() == '[1, 2, 3, 4, 5, 6, 7, 8, 9]'