diff --git a/src/test/java/org/apache/commons/io/output/ThresholdingOutputStreamTest.java b/src/test/java/org/apache/commons/io/output/ThresholdingOutputStreamTest.java index bf94520f731..894e466edbd 100644 --- a/src/test/java/org/apache/commons/io/output/ThresholdingOutputStreamTest.java +++ b/src/test/java/org/apache/commons/io/output/ThresholdingOutputStreamTest.java @@ -33,7 +33,7 @@ public class ThresholdingOutputStreamTest { @Test - public void testSetByteCount_OutputStream() throws Exception { + public void testSetByteCountOutputStream() throws Exception { final AtomicBoolean reached = new AtomicBoolean(); try (ThresholdingOutputStream tos = new ThresholdingOutputStream(3) { { @@ -58,7 +58,7 @@ protected void thresholdReached() throws IOException { } @Test - public void testSetByteCount_Stream() throws Exception { + public void testSetByteCountStream() throws Exception { final AtomicBoolean reached = new AtomicBoolean(); try (ThresholdingOutputStream tos = new ThresholdingOutputStream(3) { {