From e70c72c06b169a36170ab68ec52bda9a87c16274 Mon Sep 17 00:00:00 2001 From: Michael Foord Date: Sun, 31 Jan 2010 19:59:26 +0000 Subject: [PATCH] Minor modification to unittest documentation. --- Doc/library/unittest.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst index 2eafe3c49bf..974654a0f34 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.