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

#16433: merge with 3.2.

parents b77dc4ec 90eea97a
...@@ -642,7 +642,7 @@ class TestCase(object): ...@@ -642,7 +642,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