diff options
author | Michael Foord <fuzzyman@voidspace.org.uk> | 2010-03-20 18:09:14 (GMT) |
---|---|---|
committer | Michael Foord <fuzzyman@voidspace.org.uk> | 2010-03-20 18:09:14 (GMT) |
commit | abd91d5f2c841b75eb8a32b92acee2ae823a4ac6 (patch) | |
tree | 585e130dc3138478c4852a0ebc8cc58df0c4ed4e /Doc/whatsnew | |
parent | 91c9da34bc155139618d3c837d9bc7cef1ac4a17 (diff) | |
download | cpython-abd91d5f2c841b75eb8a32b92acee2ae823a4ac6.zip cpython-abd91d5f2c841b75eb8a32b92acee2ae823a4ac6.tar.gz cpython-abd91d5f2c841b75eb8a32b92acee2ae823a4ac6.tar.bz2 |
Issue 7832. Document changes to unittest.TestCase.assertSameElements and assertItemsEqual
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/2.7.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/2.7.rst b/Doc/whatsnew/2.7.rst index fbc1b3e..05fe385 100644 --- a/Doc/whatsnew/2.7.rst +++ b/Doc/whatsnew/2.7.rst @@ -960,7 +960,7 @@ GvR worked on merging them into Python's version of :mod:`unittest`. * :meth:`assertIn` and :meth:`assertNotIn` tests whether *first* is or is not in *second*. -* :meth:`assertSameElements` tests whether two provided sequences +* :meth:`assertItemsEqual` tests whether two provided sequences contain the same elements. * :meth:`assertSetEqual` compares whether two sets are equal, and |