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 49e1ce3f9c fix failing test
49e1ce3f9c is described below
commit 49e1ce3f9c69fa4e63fb0caa00787663afab54c0
Author: Paul King <[email protected]>
AuthorDate: Thu Jun 5 01:00:44 2025 +1000
fix failing test
---
.../groovy/org/codehaus/groovy/transform/DelegateTransformTest.groovy | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/src/test/groovy/org/codehaus/groovy/transform/DelegateTransformTest.groovy
b/src/test/groovy/org/codehaus/groovy/transform/DelegateTransformTest.groovy
index f481e2a431..b74a571614 100644
--- a/src/test/groovy/org/codehaus/groovy/transform/DelegateTransformTest.groovy
+++ b/src/test/groovy/org/codehaus/groovy/transform/DelegateTransformTest.groovy
@@ -72,7 +72,7 @@ final class DelegateTransformTest {
}
new C(numbers:[1,2,3])
'''
- assert err =~ /The return type of java.lang.Number remove\(int\) in C
is incompatible with java.lang.String in java.util.ArrayList/
+ assert err =~ /The return type of java.lang.Number get\(int\) in C is
incompatible with java.lang.String in java.util.ArrayList/
err = shouldFail '''
class C extends ArrayList<String> {