#16433: fix docstring of assertNotEqual.

This commit is contained in:
Ezio Melotti 2012-11-08 11:08:39 +02:00
parent 78b18d4b4c
commit 90eea97a33

View file

@ -628,7 +628,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: