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 7371285 Fix method names in test.
7371285 is described below
commit 7371285a6c108a66f624651973bc255b26f8a909
Author: Gary Gregory <[email protected]>
AuthorDate: Wed Jul 1 09:06:19 2020 -0400
Fix method names in test.
---
.../org/apache/commons/io/input/InfiniteCircularInputStreamTest.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/src/test/java/org/apache/commons/io/input/InfiniteCircularInputStreamTest.java
b/src/test/java/org/apache/commons/io/input/InfiniteCircularInputStreamTest.java
index 0e034a3..0e63ecb 100644
---
a/src/test/java/org/apache/commons/io/input/InfiniteCircularInputStreamTest.java
+++
b/src/test/java/org/apache/commons/io/input/InfiniteCircularInputStreamTest.java
@@ -28,7 +28,7 @@ import org.junit.jupiter.api.Test;
public class InfiniteCircularInputStreamTest {
@Test
- public void should_cycle_bytes() throws IOException {
+ public void shouldCycleBytes() throws IOException {
final byte[] input = new byte[] { 1, 2 };
final byte[] expected = new byte[] { 1, 2, 1, 2, 1 };
@@ -36,7 +36,7 @@ public class InfiniteCircularInputStreamTest {
}
@Test
- public void should_handle_whole_range_of_bytes() throws IOException {
+ public void shouldHandleWholeRangeOfBytes() throws IOException {
final int size = Byte.MAX_VALUE - Byte.MIN_VALUE + 1;
final byte[] contentToCycle = new byte[size];
byte value = Byte.MIN_VALUE;