mirror of
https://github.com/python/cpython.git
synced 2025-07-25 12:14:38 +00:00
#16433: merge with 3.3.
This commit is contained in:
commit
dee9043423
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue