aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGary Gregory <garydgregory@gmail.com>2023-01-01 11:12:38 -0500
committerGary Gregory <garydgregory@gmail.com>2023-01-01 11:12:38 -0500
commite9e610dc11b663157558635f3525f0308fee7df4 (patch)
tree0aadc242afa64ed224b7e3ff61b8f848f01a87d6
parent7c9c5e4de6b103aab49cb6a7c38df766ba0850a1 (diff)
downloadapache-commons-io-e9e610dc11b663157558635f3525f0308fee7df4.tar.gz
Spelling
-rw-r--r--src/test/java/org/apache/commons/io/FileCleaningTrackerTest.java2
-rw-r--r--src/test/java/org/apache/commons/io/test/TestUtils.java2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/test/java/org/apache/commons/io/FileCleaningTrackerTest.java b/src/test/java/org/apache/commons/io/FileCleaningTrackerTest.java
index a6e4e5aa..a1fb92ff 100644
--- a/src/test/java/org/apache/commons/io/FileCleaningTrackerTest.java
+++ b/src/test/java/org/apache/commons/io/FileCleaningTrackerTest.java
@@ -315,7 +315,7 @@ public class FileCleaningTrackerTest extends AbstractTempDirTest {
TestUtils.sleep(1000);
}
if (theInstance.getTrackCount() != 0) {
- throw new IllegalStateException("Your JVM is not releasing References, try running the testcase with less memory (-Xmx)");
+ throw new IllegalStateException("Your JVM is not releasing References, try running the test with less memory (-Xmx)");
}
}
diff --git a/src/test/java/org/apache/commons/io/test/TestUtils.java b/src/test/java/org/apache/commons/io/test/TestUtils.java
index d6e12efa..8ace275e 100644
--- a/src/test/java/org/apache/commons/io/test/TestUtils.java
+++ b/src/test/java/org/apache/commons/io/test/TestUtils.java
@@ -41,7 +41,7 @@ import org.apache.commons.io.output.ByteArrayOutputStream;
import org.apache.commons.lang3.ThreadUtils;
/**
- * Base class for testcases doing tests with files.
+ * Base class for tests doing tests with files.
*/
public abstract class TestUtils {