Skip to content

Commit

Permalink
fix the python test
Browse files Browse the repository at this point in the history
  • Loading branch information
ljeub-pometry committed Jan 10, 2025
1 parent 49c3962 commit 73460b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/tests/test_graphdb/test_node_state.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,6 @@ def test_group_by():
assert len(groups_from_lazy) == len(expected)

for i, (v, nodes) in enumerate(groups_from_lazy):
(v2, nodes2) = groups_from_eager[i]
(v2, nodes2) = groups_from_lazy[i]
assert v == v2
assert nodes.id == nodes2.id

0 comments on commit 73460b6

Please sign in to comment.