diff options
-rw-r--r-- | tests/test_commands.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_commands.py b/tests/test_commands.py index 208b99b..5c29dd5 100644 --- a/tests/test_commands.py +++ b/tests/test_commands.py @@ -2656,7 +2656,7 @@ class TestBinarySave(object): r.rpush(key, *value) # check that KEYS returns all the keys as they are - assert sorted(r.keys('*')) == sorted(list(iterkeys(mapping))) + assert sorted(r.keys('*')) == sorted(iterkeys(mapping)) # check that it is possible to get list content by key name for key, value in iteritems(mapping): |