summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2012-11-08 09:08:39 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2012-11-08 09:08:39 (GMT)
commit90eea97a331b019caf05166547b8656c320be354 (patch)
treebc5bc03b016ecd097cf5fb18c2345cfe564803b1
parent78b18d4b4c82c90c3c45f0ea77c78bbfb3358218 (diff)
downloadcpython-90eea97a331b019caf05166547b8656c320be354.zip
cpython-90eea97a331b019caf05166547b8656c320be354.tar.gz
cpython-90eea97a331b019caf05166547b8656c320be354.tar.bz2
#16433: fix docstring of assertNotEqual.
-rw-r--r--Lib/unittest/case.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/unittest/case.py b/Lib/unittest/case.py
index e627cca..bd47493 100644
--- a/Lib/unittest/case.py
+++ b/Lib/unittest/case.py
@@ -628,7 +628,7 @@ class TestCase(object):
assertion_func(first, second, msg=msg)
def assertNotEqual(self, first, second, msg=None):
- """Fail if the two objects are equal as determined by the '=='
+ """Fail if the two objects are equal as determined by the '!='
operator.
"""
if not first != second: