Commit 9b19c4be authored by Ezio Melotti's avatar Ezio Melotti

#16433: fix docstring of assertNotEqual.

parent 527b1499
...@@ -516,7 +516,7 @@ class TestCase(object): ...@@ -516,7 +516,7 @@ class TestCase(object):
assertion_func(first, second, msg=msg) assertion_func(first, second, msg=msg)
def assertNotEqual(self, first, second, msg=None): 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. operator.
""" """
if not first != second: if not first != second:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment