Skip to content

Commit

Permalink
Fix failed
Browse files Browse the repository at this point in the history
  • Loading branch information
yixinglu committed Jan 30, 2023
1 parent b41d515 commit 410d848
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/tck/features/lookup/WithYield.feature
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ Feature: Lookup with yield
When executing query:
"""
LOOKUP ON serve WHERE serve.start_year == 2008 and serve.end_year == 2019
YIELD serve.startYear AS startYear, 1 AS a, 10+1 AS b
YIELD serve.start_year AS startYear, 1 AS a, 10+1 AS b
"""
Then the result should be, in any order:
| startYear | a | b |
Expand Down
2 changes: 1 addition & 1 deletion tests/tck/features/lookup/WithYield.intVid.feature
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ Feature: Lookup with yield in integer vid
When executing query:
"""
LOOKUP ON serve WHERE serve.start_year == 2008 and serve.end_year == 2019
YIELD serve.startYear AS startYear, 1 AS a, 10+1 AS b
YIELD serve.start_year AS startYear, 1 AS a, 10+1 AS b
"""
Then the result should be, in any order:
| startYear | a | b |
Expand Down

0 comments on commit 410d848

Please sign in to comment.