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.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/test_commands.py b/tests/test_commands.py
index fc85b5f..3742edf 100644
--- a/tests/test_commands.py
+++ b/tests/test_commands.py
@@ -1196,6 +1196,7 @@ class TestRedisCommands(object):
assert value in s
assert r.smembers('a') == set(s) - {value}
+ @skip_if_server_version_lt('3.2.0')
def test_spop_multi_value(self, r):
s = [b'1', b'2', b'3']
r.sadd('a', *s)