summaryrefslogtreecommitdiff
path: root/tests/test_monitor.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_monitor.py')
-rw-r--r--tests/test_monitor.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_monitor.py b/tests/test_monitor.py
index 40d9e43..9b07c80 100644
--- a/tests/test_monitor.py
+++ b/tests/test_monitor.py
@@ -47,7 +47,7 @@ class TestMonitor:
response = wait_for_command(r, m, "GET foo\\\\x92")
assert response["command"] == "GET foo\\\\x92"
- @skip_if_redis_enterprise
+ @skip_if_redis_enterprise()
def test_lua_script(self, r):
with r.monitor() as m:
script = 'return redis.call("GET", "foo")'
@@ -58,7 +58,7 @@ class TestMonitor:
assert response["client_address"] == "lua"
assert response["client_port"] == ""
- @skip_ifnot_redis_enterprise
+ @skip_ifnot_redis_enterprise()
def test_lua_script_in_enterprise(self, r):
with r.monitor() as m:
script = 'return redis.call("GET", "foo")'