commit | 9b19c4bea98fe2408a058d23da01b74b4e3784d9 | [log] [tgz] |
---|---|---|
author | Ezio Melotti <ezio.melotti@gmail.com> | Thu Nov 08 11:08:39 2012 +0200 |
committer | Ezio Melotti <ezio.melotti@gmail.com> | Thu Nov 08 11:08:39 2012 +0200 |
tree | 400263fa16e7291668d905f1da4839382a541de8 | |
parent | 527b1499cccee79e10286c8011957c1ab35d9fd1 [diff] [blame] |
#16433: fix docstring of assertNotEqual.
diff --git a/Lib/unittest/case.py b/Lib/unittest/case.py index b3c581a..7017e9f 100644 --- a/Lib/unittest/case.py +++ b/Lib/unittest/case.py
@@ -516,7 +516,7 @@ 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: