Skip to content

Commit

Permalink
add tck.
Browse files Browse the repository at this point in the history
  • Loading branch information
xtcyclist committed Mar 27, 2023
1 parent 9e75c67 commit 0dc2592
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions tests/tck/features/match/Base.IntVid.feature
Original file line number Diff line number Diff line change
Expand Up @@ -1045,8 +1045,8 @@ Feature: Basic match
MATCH (v:player{name:"Tim Duncan"}) RETURN v.player AS vtag
"""
Then the result should be, in any order:
| vtag |
| {name:"Tim Duncan"} |
| vtag |
| {age: 42, name: "Tim Duncan"} |
When executing query:
"""
MATCH (v:player)-[]->(b) WHERE v.age > 30 RETURN v.player.name AS vname
Expand Down
4 changes: 2 additions & 2 deletions tests/tck/features/match/Base.feature
Original file line number Diff line number Diff line change
Expand Up @@ -1449,8 +1449,8 @@ Feature: Basic match
MATCH (v:player{name:"Tim Duncan"}) RETURN v.player AS vtag
"""
Then the result should be, in any order:
| vtag |
| {name:"Tim Duncan"} |
| vtag |
| {age: 42, name: "Tim Duncan"} |
When executing query:
"""
MATCH (v:player)-[]->(b) WHERE v.age > 30 RETURN v.player.name AS vname
Expand Down

0 comments on commit 0dc2592

Please sign in to comment.