From: Ezio Melotti Date: Thu, 8 Nov 2012 09:08:39 +0000 (+0200) Subject: #16433: fix docstring of assertNotEqual. X-Git-Tag: v2.7.4rc1~400 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9b19c4bea98fe2408a058d23da01b74b4e3784d9;p=thirdparty%2FPython%2Fcpython.git #16433: fix docstring of assertNotEqual. --- diff --git a/Lib/unittest/case.py b/Lib/unittest/case.py index b3c581a6eaaa..7017e9f4e849 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: