summaryrefslogtreecommitdiff
path: root/tests/test_commands.py
diff options
context:
space:
mode:
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 17b34c7..c78de8b 100644
--- a/tests/test_commands.py
+++ b/tests/test_commands.py
@@ -1662,7 +1662,7 @@ class TestStrictCommands(object):
results = sr.xread(varname='$', count=10, block=10)
assert results is None
- results = sr.xread(count=3, block=1000, **{varname: stamp1})
+ results = sr.xread(count=3, block=0, **{varname: stamp1})
assert results[varname][0][0] == stamp2
def test_strict_zadd(self, sr):