This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-io.git

commit 8bc3e236c5efa8331b257e6761ad48bf26d00462
Author: Gary Gregory <gardgreg...@gmail.com>
AuthorDate: Sun Jul 24 12:06:45 2022 -0400

    Fix reference
---
 src/test/java/org/apache/commons/io/function/IOPredicateTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/test/java/org/apache/commons/io/function/IOPredicateTest.java 
b/src/test/java/org/apache/commons/io/function/IOPredicateTest.java
index fa4e0b09..1e1d7011 100644
--- a/src/test/java/org/apache/commons/io/function/IOPredicateTest.java
+++ b/src/test/java/org/apache/commons/io/function/IOPredicateTest.java
@@ -46,7 +46,7 @@ public class IOPredicateTest {
     private static final Object THROWING_EQUALS = new Object() {
         @Override
         public boolean equals(final Object obj) {
-            throw IOStream.rethrow(new IOException("Expected"));
+            throw IOStreams.rethrow(new IOException("Expected"));
         }
     };
 

Reply via email to