#16433: fix docstring of assertNotEqual.
This commit is contained in:
parent
527b1499cc
commit
9b19c4bea9
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue