Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Marius Conjeaud committed Oct 4, 2023
1 parent b945e69 commit 254e0e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test_match_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ def test_order_by():

with raises(
ValueError,
match=r".*Neo4j internals like id or elementId are not allowed for use in this operation.",
match=r".*Neo4j internals like id or element_id are not allowed for use in this operation.",
):
Coffee.nodes.order_by("id")

Expand Down Expand Up @@ -278,7 +278,7 @@ def test_extra_filters():

with raises(
ValueError,
match=r".*Neo4j internals like id or elementId are not allowed for use in this operation.",
match=r".*Neo4j internals like id or element_id are not allowed for use in this operation.",
):
Coffee.nodes.filter(elementId="4:xxx:111").all()

Expand Down

0 comments on commit 254e0e4

Please sign in to comment.