diff options
Diffstat (limited to 'tests/util.py')
-rw-r--r-- | tests/util.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/util.py b/tests/util.py index 9bce7c08..7929321a 100644 --- a/tests/util.py +++ b/tests/util.py @@ -287,6 +287,9 @@ def assert_deepequal(expected, got, doc='', stack=tuple()): expected = u'how are you?' got = 'how are you?' path = (0, 'world') + + Note that lists and tuples are considered equivalent, and the order of + their elements does not matter. """ if isinstance(expected, tuple): expected = list(expected) |