You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2022/07/25 22:47:16 UTC

[commons-io] branch master updated: Rename test class to match the class name under test

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 7b003afc Rename test class to match the class name under test
7b003afc is described below

commit 7b003afc65109c26da0f31e24d03841556ebc6d0
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Mon Jul 25 18:47:10 2022 -0400

    Rename test class to match the class name under test
---
 .../org/apache/commons/io/{DemuxTest.java => DemuxInputStreamTest.java} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/test/java/org/apache/commons/io/DemuxTest.java b/src/test/java/org/apache/commons/io/DemuxInputStreamTest.java
similarity index 99%
rename from src/test/java/org/apache/commons/io/DemuxTest.java
rename to src/test/java/org/apache/commons/io/DemuxInputStreamTest.java
index dfad2830..ae3aa1e2 100644
--- a/src/test/java/org/apache/commons/io/DemuxTest.java
+++ b/src/test/java/org/apache/commons/io/DemuxInputStreamTest.java
@@ -35,7 +35,7 @@ import org.junit.jupiter.api.Test;
 /**
  * Basic unit tests for the multiplexing streams.
  */
-public class DemuxTest {
+public class DemuxInputStreamTest {
     private static class ReaderThread
             extends Thread {
         private final StringBuffer stringBuffer = new StringBuffer();