This is an automated email from the ASF dual-hosted git repository.
paulk pushed a commit to branch GROOVY_3_0_X
in repository https://gitbox.apache.org/repos/asf/groovy.git
The following commit(s) were added to refs/heads/GROOVY_3_0_X by this push:
new 79148c2 explore whether using a Short instead of String for improves
metaclass test robustness for CI
79148c2 is described below
commit 79148c2fd2b705f23947cc51561ff2d4849f9d56
Author: Paul King <[email protected]>
AuthorDate: Fri Sep 18 12:57:34 2020 +1000
explore whether using a Short instead of String for improves metaclass test
robustness for CI
---
src/test/groovy/lang/MetaClassPropertyTest.groovy | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/test/groovy/lang/MetaClassPropertyTest.groovy
b/src/test/groovy/lang/MetaClassPropertyTest.groovy
index fa5b2df..89ec1e8 100644
--- a/src/test/groovy/lang/MetaClassPropertyTest.groovy
+++ b/src/test/groovy/lang/MetaClassPropertyTest.groovy
@@ -23,7 +23,7 @@ import groovy.test.GroovyTestCase
class MetaClassPropertyTest extends GroovyTestCase {
void testForJavaClass() {
- checkMetaClassBehavior("hello world")
+ checkMetaClassBehavior(Short.valueOf("1"))
}
void testForGroovyClass() {