]> granicus.if.org Git - python/commitdiff
Minor modification to unittest documentation.
authorMichael Foord <fuzzyman@voidspace.org.uk>
Sun, 31 Jan 2010 19:59:26 +0000 (19:59 +0000)
committerMichael Foord <fuzzyman@voidspace.org.uk>
Sun, 31 Jan 2010 19:59:26 +0000 (19:59 +0000)
Doc/library/unittest.rst

index 2eafe3c49bf064c2709c6dfe7fadd32036272a8b..974654a0f3454370f63f44fb28551d771b1c8e4a 100644 (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.