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
The following commit(s) were added to refs/heads/GROOVY_4_0_X by this push:
new 55d43696d2 typo
55d43696d2 is described below
commit 55d43696d2b13fa03067ef3c2b200eb7c84148ca
Author: Paul King <[email protected]>
AuthorDate: Fri Jan 26 12:54:08 2024 +1000
typo
---
src/test/org/codehaus/groovy/runtime/CustomBooleanCoercionTest.groovy | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/src/test/org/codehaus/groovy/runtime/CustomBooleanCoercionTest.groovy
b/src/test/org/codehaus/groovy/runtime/CustomBooleanCoercionTest.groovy
index bbda753125..e50bcd9787 100644
--- a/src/test/org/codehaus/groovy/runtime/CustomBooleanCoercionTest.groovy
+++ b/src/test/org/codehaus/groovy/runtime/CustomBooleanCoercionTest.groovy
@@ -102,7 +102,7 @@ class CustomBooleanCoercionTest extends GroovyTestCase {
}
}
- void testOverideStringAsBooleanThroughEMC() {
+ void testOverrideStringAsBooleanThroughEMC() {
try {
String.metaClass.asBoolean = { -> true }
@@ -118,7 +118,7 @@ class CustomBooleanCoercionTest extends GroovyTestCase {
}
}
-/** A Predicate classe coercible to a boolean expression */
+/** A Predicate class coercible to a boolean expression */
class Predicate {
boolean value
boolean asBoolean() { value }