summaryrefslogtreecommitdiff
path: root/tests/test_commands.py
diff options
context:
space:
mode:
authorpfreixes <pfreixes@gmail.com>2016-06-14 23:59:19 +0200
committerpfreixes <pfreixes@gmail.com>2016-06-14 23:59:19 +0200
commitdd99ea7fc37b883a6bd2d618d7c99cae7e93ca7e (patch)
tree46ee9abc1a8959bca540bf3a43c14afd1664520f /tests/test_commands.py
parent934ff423c9503373f31a173fcb00591769ce7d40 (diff)
downloadredis-py-dd99ea7fc37b883a6bd2d618d7c99cae7e93ca7e.tar.gz
Fixed issues regarding Python3
Diffstat (limited to 'tests/test_commands.py')
-rw-r--r--tests/test_commands.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_commands.py b/tests/test_commands.py
index 8c5e9e5..06b19b7 100644
--- a/tests/test_commands.py
+++ b/tests/test_commands.py
@@ -1523,7 +1523,7 @@ class TestRedisCommands(object):
r.geoadd('barcelona', *values)
r.georadius('barcelona', 2.191, 41.433, 1000, store='places_barcelona')
- assert r.zrange('places_barcelona', 0, -1) == ['place1']
+ assert r.zrange('places_barcelona', 0, -1) == [b'place1']
@skip_if_server_version_lt('3.2.0')
def test_georadius_store_dist(self, r):