summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2012-11-08 11:08:39 +0200
committerEzio Melotti <ezio.melotti@gmail.com>2012-11-08 11:08:39 +0200
commit9b19c4bea98fe2408a058d23da01b74b4e3784d9 (patch)
tree400263fa16e7291668d905f1da4839382a541de8
parent527b1499cccee79e10286c8011957c1ab35d9fd1 (diff)
downloadcpython-git-9b19c4bea98fe2408a058d23da01b74b4e3784d9.tar.gz
#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 b3c581a6ea..7017e9f4e8 100644
--- a/Lib/unittest/case.py
+++ b/Lib/unittest/case.py
@@ -516,7 +516,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: