diff options
author | Michael Foord <fuzzyman@voidspace.org.uk> | 2010-02-05 23:28:12 +0000 |
---|---|---|
committer | Michael Foord <fuzzyman@voidspace.org.uk> | 2010-02-05 23:28:12 +0000 |
commit | ba7732ea6a1383d1756ee3aaa885f68ce60cd3f8 (patch) | |
tree | b708d49318f16f8731e44853f615fbd3e2b91607 | |
parent | 757cc4d15f1f6c4571fc58f9aa46a611bc8c00e4 (diff) | |
download | cpython-git-ba7732ea6a1383d1756ee3aaa885f68ce60cd3f8.tar.gz |
Minor doc change.
-rw-r--r-- | Doc/library/unittest.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst index 762f0ce594..fccd6efbfd 100644 --- a/Doc/library/unittest.rst +++ b/Doc/library/unittest.rst @@ -905,7 +905,7 @@ Test cases do_something() the_exception = cm.exc_value - self.assertEquals(the_exception.error_code, 3) + self.assertEqual(the_exception.error_code, 3) .. versionchanged:: 2.7 Added the ability to use :meth:`assertRaises` as a context manager. |