diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2012-11-08 11:08:39 +0200 |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2012-11-08 11:08:39 +0200 |
commit | 9b19c4bea98fe2408a058d23da01b74b4e3784d9 (patch) | |
tree | 400263fa16e7291668d905f1da4839382a541de8 | |
parent | 527b1499cccee79e10286c8011957c1ab35d9fd1 (diff) | |
download | cpython-git-9b19c4bea98fe2408a058d23da01b74b4e3784d9.tar.gz |
#16433: fix docstring of assertNotEqual.
-rw-r--r-- | Lib/unittest/case.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/unittest/case.py b/Lib/unittest/case.py index b3c581a6ea..7017e9f4e8 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: |