summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/queries/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/queries/tests.py b/tests/queries/tests.py
index d1c1b2b4b0..b69ea84345 100644
--- a/tests/queries/tests.py
+++ b/tests/queries/tests.py
@@ -550,7 +550,7 @@ class Queries1Tests(TestCase):
# normal. A normal dict would thus fail.)
s = [('a', '%s'), ('b', '%s')]
params = ['one', 'two']
- if {'a': 1, 'b': 2}.keys() == ['a', 'b']:
+ if list({'a': 1, 'b': 2}) == ['a', 'b']:
s.reverse()
params.reverse()