diff options
Diffstat (limited to 'Doc/library/unittest.rst')
-rw-r--r-- | Doc/library/unittest.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst index 787d1a6..244dc43 100644 --- a/Doc/library/unittest.rst +++ b/Doc/library/unittest.rst @@ -840,13 +840,13 @@ Test cases In addition, if *first* and *second* are the exact same type and one of list, tuple, dict, set, frozenset or unicode or any type that a subclass - registers with :meth:`addTypeEqualityFunc` the type specific equality + registers with :meth:`addTypeEqualityFunc` the type-specific equality function will be called in order to generate a more useful default error message (see also the :ref:`list of type-specific methods <type-specific-methods>`). .. versionchanged:: 2.7 - Added the automatic calling of type specific equality function. + Added the automatic calling of type-specific equality function. .. method:: assertNotEqual(first, second, msg=None) |