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 82393b18150c8521b43c52267a3cc7f8487181f2 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Tue May 6 10:26:38 2025 -0400 Add to org.apache.commons.io.function.IOStreamTest.testIsParallel() --- src/test/java/org/apache/commons/io/function/IOStreamTest.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/test/java/org/apache/commons/io/function/IOStreamTest.java b/src/test/java/org/apache/commons/io/function/IOStreamTest.java index 12e5c5779..a36443717 100644 --- a/src/test/java/org/apache/commons/io/function/IOStreamTest.java +++ b/src/test/java/org/apache/commons/io/function/IOStreamTest.java @@ -304,6 +304,7 @@ public void testForEachOrderedAsParallel() throws IOException { @Test public void testIsParallel() { assertFalse(IOStream.of("A", "B").isParallel()); + assertTrue(IOStream.of("A", "B").parallel().isParallel()); } @SuppressWarnings("resource") // custom stream not recognized by compiler warning machinery