Skip to content

Commit

Permalink
fix(test): minor fix to test case
Browse files Browse the repository at this point in the history
  • Loading branch information
tglman committed Jun 10, 2024
1 parent eebe812 commit 8d9482e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_ogm.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ def testGraph(self):
g.foods.query(name=food.name).what(expand(in_(Eats)))) \
.what(Animal.name).all())

for food_name, food_color in g.query(Food.name, Food.color):
for food_name, food_color in g.query(Food.name, Food.color).all():
print(food_name, food_color) # 'pea green' # 'cheese yellow'

# FIXME While it is nicer to use files, parser should be more
Expand Down

0 comments on commit 8d9482e

Please sign in to comment.