summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Plant <L.Plant.98@cantab.net>2012-10-26 01:25:22 +0100
committerLuke Plant <L.Plant.98@cantab.net>2012-10-26 01:55:55 +0100
commitc8508943a2e69840e3ec3322dba98551cbb23a9b (patch)
tree475e53aaf1a2d7fc1a4794cbbd6be9aebb67bf53
parent3266c26eb22599a5577d41856baa04e99f87efe4 (diff)
Fixed some test failures on Python 3.3 related to QueryDict
Refs #19038.
-rw-r--r--tests/regressiontests/httpwrappers/tests.py12
1 files changed, 8 insertions, 4 deletions
diff --git a/tests/regressiontests/httpwrappers/tests.py b/tests/regressiontests/httpwrappers/tests.py
index d8b11edb57..553b6ecff4 100644
--- a/tests/regressiontests/httpwrappers/tests.py
+++ b/tests/regressiontests/httpwrappers/tests.py
@@ -129,10 +129,14 @@ class QueryDictTests(unittest.TestCase):
self.assertTrue(q.has_key('foo'))
self.assertTrue('foo' in q)
- self.assertEqual(list(six.iteritems(q)), [('foo', 'another'), ('name', 'john')])
- self.assertEqual(list(six.iterlists(q)), [('foo', ['bar', 'baz', 'another']), ('name', ['john'])])
- self.assertEqual(list(six.iterkeys(q)), ['foo', 'name'])
- self.assertEqual(list(six.itervalues(q)), ['another', 'john'])
+ self.assertEqual(sorted(list(six.iteritems(q))),
+ [('foo', 'another'), ('name', 'john')])
+ self.assertEqual(sorted(list(six.iterlists(q))),
+ [('foo', ['bar', 'baz', 'another']), ('name', ['john'])])
+ self.assertEqual(sorted(list(six.iterkeys(q))),
+ ['foo', 'name'])
+ self.assertEqual(sorted(list(six.itervalues(q))),
+ ['another', 'john'])
self.assertEqual(len(q), 2)
q.update({'foo': 'hello'})