Browse Source

#16433: fix docstring of assertNotEqual.

pull/2332/head
Ezio Melotti 13 years ago
parent
commit
90eea97a33
  1. 2
      Lib/unittest/case.py

2
Lib/unittest/case.py

@ -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:

Loading…
Cancel
Save