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
The following commit(s) were added to refs/heads/master by this push:
new 2c573456e Ttypo
2c573456e is described below
commit 2c573456e2ed1fb926a4a7c135ee432c10e7e4cc
Author: Gary Gregory <[email protected]>
AuthorDate: Tue May 6 13:50:32 2025 -0400
Ttypo
---
src/test/java/org/apache/commons/io/function/IOStreamTest.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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 4809752f5..deda94cd8 100644
--- a/src/test/java/org/apache/commons/io/function/IOStreamTest.java
+++ b/src/test/java/org/apache/commons/io/function/IOStreamTest.java
@@ -322,7 +322,7 @@ public void testForEachOrderedAdaptParallel() throws
IOException {
assertEquals("ABC", sb.toString());
sb.setLength(0);
IOStream.adapt(Stream.of("A", "B", "C",
"D").parallel()).forEachOrdered(sb::append);
- assertEquals("ABCB", sb.toString());
+ assertEquals("ABCD", sb.toString());
}
@SuppressWarnings("resource") // custom stream not recognized by compiler
warning machinery