summaryrefslogtreecommitdiffstats
path: root/tests/test_util.py
diff options
context:
space:
mode:
authorRob Crittenden <rcritten@redhat.com>2011-08-30 23:40:17 -0400
committerMartin Kosek <mkosek@redhat.com>2011-08-31 11:18:08 +0200
commit8f5e82940fd2f5a81fe3644686b06ec08fb22c58 (patch)
treeac7cb81968f51a31f8e9d84342a5f59faf1b3400 /tests/test_util.py
parentd05ace8fba6ea4a61c1070d5e5687aaa5d2aee2b (diff)
downloadfreeipa-8f5e82940fd2f5a81fe3644686b06ec08fb22c58.tar.gz
freeipa-8f5e82940fd2f5a81fe3644686b06ec08fb22c58.tar.xz
freeipa-8f5e82940fd2f5a81fe3644686b06ec08fb22c58.zip
Sort lists so order is predictable and tests pass as expected.
Related to https://fedorahosted.org/freeipa/ticket/1272
Diffstat (limited to 'tests/test_util.py')
-rw-r--r--tests/test_util.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_util.py b/tests/test_util.py
index 0a253adfa..f87822a22 100644
--- a/tests/test_util.py
+++ b/tests/test_util.py
@@ -180,7 +180,7 @@ def test_assert_deepequal():
]
e = raises(AssertionError, f, a, b, 'foo')
assert str(e) == TYPE % (
- 'foo', unicode, str, u'hello', 'hello', (0,)
+ 'foo', unicode, str, u'hello', 'hello', (2,)
)
b = [
@@ -200,7 +200,7 @@ def test_assert_deepequal():
]
e = raises(AssertionError, f, a, b, 'foo')
assert str(e) == TYPE % (
- 'foo', int, float, 18, 18.0, (2,)
+ 'foo', int, float, 18, 18.0, (0,)
)
# List length mismatch