aboutsummaryrefslogtreecommitdiff
path: root/src/test
diff options
context:
space:
mode:
Diffstat (limited to 'src/test')
-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 {