]> granicus.if.org Git - python/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 e627ccaaf19fef96197e29545db06f0eaa7c07ae..bd47493ebdef0f75312e080a24b9afa6d88b5dc2 100644 (file)
@@ -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: