Minor modification to unittest documentation.

This commit is contained in:
Michael Foord 2010-01-31 19:59:26 +00:00
parent 979d79cd31
commit e70c72c06b
1 changed files with 3 additions and 3 deletions

View File

@ -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.