Commit 90eea97a authored by Ezio Melotti's avatar Ezio Melotti

#16433: fix docstring of assertNotEqual.

parent 78b18d4b
...@@ -628,7 +628,7 @@ class TestCase(object): ...@@ -628,7 +628,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