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.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/test_commands.py b/tests/test_commands.py
index 724928f..9e77a93 100644
--- a/tests/test_commands.py
+++ b/tests/test_commands.py
@@ -67,10 +67,8 @@ class TestRedisCommands(object):
def test_client_unblock(self, r):
myid = r.client_id()
assert not r.client_unblock(myid)
- assert not r.client_unblock(myid, reason='TIMEOUT')
- assert not r.client_unblock(myid, reason='ERROR')
- with pytest.raises(exceptions.ResponseError):
- r.client_unblock(myid, reason='foobar')
+ assert not r.client_unblock(myid, error=True)
+ assert not r.client_unblock(myid, error=False)
@skip_if_server_version_lt('2.6.9')
def test_client_getname(self, r):