]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
#16433: fix docstring of assertNotEqual.
authorEzio Melotti <ezio.melotti@gmail.com>
Thu, 8 Nov 2012 09:08:39 +0000 (11:08 +0200)
committerEzio Melotti <ezio.melotti@gmail.com>
Thu, 8 Nov 2012 09:08:39 +0000 (11:08 +0200)
Lib/unittest/case.py

index b3c581a6eaaa01d5104ae77600cc518a726d8498..7017e9f4e849543bb2e293e7080de693be6e6a7c 100644 (file)
@@ -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: