diff options
author | Michael Foord <fuzzyman@voidspace.org.uk> | 2010-01-31 19:59:26 (GMT) |
---|---|---|
committer | Michael Foord <fuzzyman@voidspace.org.uk> | 2010-01-31 19:59:26 (GMT) |
commit | e70c72c06b169a36170ab68ec52bda9a87c16274 (patch) | |
tree | 43e4364746eff6c7ee3c7f98cadc5948f3bc01ca /Doc/library/unittest.rst | |
parent | 979d79cd312d70faa5341cf5b4ada407590306f3 (diff) | |
download | cpython-e70c72c06b169a36170ab68ec52bda9a87c16274.zip cpython-e70c72c06b169a36170ab68ec52bda9a87c16274.tar.gz cpython-e70c72c06b169a36170ab68ec52bda9a87c16274.tar.bz2 |
Minor modification to unittest documentation.
Diffstat (limited to 'Doc/library/unittest.rst')
-rw-r--r-- | Doc/library/unittest.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst index 2eafe3c..974654a 100644 --- a/Doc/library/unittest.rst +++ b/Doc/library/unittest.rst @@ -808,9 +808,9 @@ Test cases .. method:: assertSameElements(expected, actual, msg=None) - Test that sequence *expected* contains the same elements as *actual*. - When they don't an error message listing the differences between the - sequences will be generated. + Test that sequence *expected* contains the same elements as *actual*, + regardless of their order. When they don't, an error message listing + the differences between the sequences will be generated. If specified *msg* will be used as the error message on failure. |