You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by pa...@apache.org on 2022/08/25 13:33:46 UTC

[groovy] 01/02: typo

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 d9394004637f61d388304d89bbd1abe3c423ab67
Author: Paul King <pa...@asert.com.au>
AuthorDate: Thu Aug 25 23:32:50 2022 +1000

    typo
---
 src/test/groovy/inspect/InspectorTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/test/groovy/inspect/InspectorTest.java b/src/test/groovy/inspect/InspectorTest.java
index 6284da9831..c656f69713 100644
--- a/src/test/groovy/inspect/InspectorTest.java
+++ b/src/test/groovy/inspect/InspectorTest.java
@@ -51,7 +51,7 @@ public class InspectorTest extends MockObjectTestCase implements Serializable {
         assertEquals(object, inspector.getObject());
         try {
             new Inspector(null);
-            fail("should have thown IllegalArgumentException");
+            fail("should have thrown IllegalArgumentException");
         } catch (Exception expected) {
         }
     }