summaryrefslogtreecommitdiff
path: root/tests/test_graph.py
diff options
context:
space:
mode:
authorJan <59206115+Threated@users.noreply.github.com>2023-01-11 10:19:29 +0100
committerGitHub <noreply@github.com>2023-01-11 11:19:29 +0200
commit4a825bc76b668951923c57aaff1020c3892f8de2 (patch)
treef39c9cfcf22579f9242df20757ad358e417f25a4 /tests/test_graph.py
parentf46d7f3ef7ce64f90acd4a3dcc14375ab9ae9c9d (diff)
downloadredis-py-4a825bc76b668951923c57aaff1020c3892f8de2.tar.gz
String cleanse (#2548)
* Fixed string escape and added tests * Add Change * Name change
Diffstat (limited to 'tests/test_graph.py')
-rw-r--r--tests/test_graph.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_graph.py b/tests/test_graph.py
index d71df48..4721b2f 100644
--- a/tests/test_graph.py
+++ b/tests/test_graph.py
@@ -124,7 +124,7 @@ def test_path(client):
@pytest.mark.redismod
def test_param(client):
- params = [1, 2.3, "str", True, False, None, [0, 1, 2]]
+ params = [1, 2.3, "str", True, False, None, [0, 1, 2], r"\" RETURN 1337 //"]
query = "RETURN $param"
for param in params:
result = client.graph().query(query, {"param": param})