Skip to content

Commit 2c57345

Browse files
committed
Ttypo
1 parent 638b714 commit 2c57345

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/org/apache/commons/io/function/IOStreamTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ public void testForEachOrderedAdaptParallel() throws IOException {
322322
assertEquals("ABC", sb.toString());
323323
sb.setLength(0);
324324
IOStream.adapt(Stream.of("A", "B", "C", "D").parallel()).forEachOrdered(sb::append);
325-
assertEquals("ABCB", sb.toString());
325+
assertEquals("ABCD", sb.toString());
326326
}
327327

328328
@SuppressWarnings("resource") // custom stream not recognized by compiler warning machinery

0 commit comments

Comments
 (0)