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 bf503a33deb1d3d2fa8fcf89fbee1c61c5a079d9 Author: Gary D. Gregory <garydgreg...@gmail.com> AuthorDate: Sun Apr 6 10:38:56 2025 -0400 Better test method name --- src/test/java/org/apache/commons/io/input/AbstractInputStreamTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/org/apache/commons/io/input/AbstractInputStreamTest.java b/src/test/java/org/apache/commons/io/input/AbstractInputStreamTest.java index 477ba5826..5de74b06b 100644 --- a/src/test/java/org/apache/commons/io/input/AbstractInputStreamTest.java +++ b/src/test/java/org/apache/commons/io/input/AbstractInputStreamTest.java @@ -163,7 +163,7 @@ public void testReadMultipleBytes() throws IOException { } @Test - public void testReadOneByte() throws IOException { + public void testReadOneByOne() throws IOException { for (final InputStream inputStream : inputStreams) { for (final byte randomByte : expectedRandomBytes) { assertEquals(randomByte, (byte) inputStream.read());