From: Ezio Melotti Date: Thu, 8 Nov 2012 09:08:39 +0000 (+0200) Subject: #16433: fix docstring of assertNotEqual. X-Git-Tag: v3.3.1rc1~667^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=90eea97a331b019caf05166547b8656c320be354;p=python #16433: fix docstring of assertNotEqual. --- diff --git a/Lib/unittest/case.py b/Lib/unittest/case.py index e627ccaaf1..bd47493ebd 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: