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 341d259da Normalize method names 341d259da is described below commit 341d259da21e14f44e9444199fd7efad3ee20d23 Author: Gary D. Gregory <garydgreg...@gmail.com> AuthorDate: Sat Feb 1 08:29:35 2025 -0500 Normalize method names --- .../org/apache/commons/io/output/ThresholdingOutputStreamTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 bf94520f7..894e466ed 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) { {