This is an automated email from the ASF dual-hosted git repository.
paulk 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 c4470a2b42 minor test refactor - fix test name
c4470a2b42 is described below
commit c4470a2b425cdd9a4b7cefc2c74126feba045fcd
Author: Paul King <[email protected]>
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]'