summaryrefslogtreecommitdiff
path: root/tests/test_commands.py
diff options
context:
space:
mode:
authorRoey Prat <roey.prat@redislabs.com>2018-11-04 10:26:27 +0200
committerRoey Prat <roey.prat@redislabs.com>2018-11-04 10:29:05 +0200
commitbf15bd6bb6de06d2da8727308bd9d91ff584b514 (patch)
treed922c2217dc575ebdbff8e1902dc14ab350cf75b /tests/test_commands.py
parent7a8a85245d2e55c2c97290175bd6d6f98976ff5f (diff)
downloadredis-py-bf15bd6bb6de06d2da8727308bd9d91ff584b514.tar.gz
Remove reason arg from client_unblock. Use boolean 'error' arg instead.
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):