Skip to content

Commit

Permalink
fixed bug in test
Browse files Browse the repository at this point in the history
  • Loading branch information
jkminder committed Jul 29, 2024
1 parent b055f15 commit 9e04e8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/neo4j/test_match.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,9 +150,9 @@ def test_match_relationships_with_iterator(session):
# match by type
rels = match_relationships(session, rel_type="to", return_iterator=True)
assert(len(rels) == 2)
rels = list(rels)
assert(len(rels) == 2)
assert(check_rel(rels, 1))
rels = list(rels)
assert(check_rel(rels, 2))

# match by properties
Expand Down

0 comments on commit 9e04e8f

Please sign in to comment.