Skip to content

Commit 8d9482e

Browse files
committed
fix(test): minor fix to test case
1 parent eebe812 commit 8d9482e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_ogm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ def testGraph(self):
144144
g.foods.query(name=food.name).what(expand(in_(Eats)))) \
145145
.what(Animal.name).all())
146146

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

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

0 commit comments

Comments
 (0)