Skip to content

Commit 875485f

Browse files
authored
Rework parameter handling (#5990)
* Rework parameter handling * fix fts test * ci: auto code format --------- Co-authored-by: CI Bot <andyfengHKU@users.noreply.github.com>
1 parent 42a6916 commit 875485f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/test_exception.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
def test_exception(conn_db_readonly: ConnDB) -> None:
99
conn, _ = conn_db_readonly
1010

11-
with pytest.raises(RuntimeError, match=r"Parameter asd not found."):
11+
with pytest.raises(RuntimeError, match=r"Parameter 1 not found."):
1212
conn.execute("MATCH (a:person) WHERE a.registerTime = $1 RETURN COUNT(*);", {"asd": 1})
1313

1414
with pytest.raises(RuntimeError, match=r"Binder exception: Cannot find property dummy for a."):

0 commit comments

Comments
 (0)