summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChayim I. Kirshen <c@kirshen.com>2021-11-02 14:31:22 +0200
committerChayim I. Kirshen <c@kirshen.com>2021-11-02 14:31:22 +0200
commit235f0a45df3b61e5f77539413d463f36db894727 (patch)
tree9786b213835a664c1b1e42ede95f6d7e8af1f36b
parent2bf3fe98843a961849c33c4a5ed8af22f959dc61 (diff)
downloadredis-py-235f0a45df3b61e5f77539413d463f36db894727.tar.gz
fix arrtrim_dollar test
-rw-r--r--tests/test_json.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_json.py b/tests/test_json.py
index 1a39f06..5cea4ab 100644
--- a/tests/test_json.py
+++ b/tests/test_json.py
@@ -689,7 +689,7 @@ def test_arrtrim_dollar(client):
# Test missing key
with pytest.raises(exceptions.ResponseError):
- client.json().arrtrim('non_existing_doc', '..a')
+ client.json().arrtrim('non_existing_doc', '..a', 1, 1)
@pytest.mark.redismod
def test_objkeys_dollar(client):