summaryrefslogtreecommitdiffstats
path: root/junit/src/main/java
diff options
context:
space:
mode:
Diffstat (limited to 'junit/src/main/java')
-rw-r--r--junit/src/main/java/junit/framework/Assert.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/junit/src/main/java/junit/framework/Assert.java b/junit/src/main/java/junit/framework/Assert.java
index 364e646..289449a 100644
--- a/junit/src/main/java/junit/framework/Assert.java
+++ b/junit/src/main/java/junit/framework/Assert.java
@@ -249,7 +249,7 @@ public class Assert {
assertSame(null, expected, actual);
}
/**
- * Asserts that two objects refer to the same object. If they are not
+ * Asserts that two objects do not refer to the same object. If they are
* an AssertionFailedError is thrown with the given message.
*/
static public void assertNotSame(String message, Object expected, Object actual) {
@@ -257,7 +257,7 @@ public class Assert {
failSame(message);
}
/**
- * Asserts that two objects refer to the same object. If they are not
+ * Asserts that two objects do not refer to the same object. If they are
* the same an AssertionFailedError is thrown.
*/
static public void assertNotSame(Object expected, Object actual) {