#16433: fix docstring of assertNotEqual.
diff --git a/Lib/unittest/case.py b/Lib/unittest/case.py
index b3c581a..7017e9f 100644
--- a/Lib/unittest/case.py
+++ b/Lib/unittest/case.py
@@ -516,7 +516,7 @@
         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: