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

commit f9f9ada77922fc852d7dd673ca2ea4b7a069e900
Author: Paul King <[email protected]>
AuthorDate: Wed Jun 7 12:07:44 2023 +1000

    fix typo
---
 src/test/org/codehaus/groovy/runtime/NullObjectTest.groovy | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/test/org/codehaus/groovy/runtime/NullObjectTest.groovy 
b/src/test/org/codehaus/groovy/runtime/NullObjectTest.groovy
index 9a50f76339..79ba4780a9 100644
--- a/src/test/org/codehaus/groovy/runtime/NullObjectTest.groovy
+++ b/src/test/org/codehaus/groovy/runtime/NullObjectTest.groovy
@@ -84,7 +84,7 @@ class NullObjectTest extends GroovyTestCase {
         assert message == "Cannot execute null+null"
     }
 
-    void testNullPlusNumer() {
+    void testNullPlusNumber() {
       String message = shouldFail(NullPointerException) {
           null+1
       }

Reply via email to