Skip to content

Commit

Permalink
fix tck
Browse files Browse the repository at this point in the history
  • Loading branch information
codesigner committed Dec 7, 2022
1 parent a837a01 commit 9f2e98b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/tck/features/match/PathExpr.feature
Original file line number Diff line number Diff line change
Expand Up @@ -50,22 +50,22 @@ Feature: Basic match
"""
MATCH (v:player) WITH (v)-[v]-() AS p RETURN p
"""
Then a SemanticError should be raised at runtime: Alias `v' should be Edge.
Then a SemanticError should be raised at runtime: Alias `v' should be Edge, but got type 'Node'
When executing query:
"""
MATCH (v:player) UNWIND (v)-[v]-() AS p RETURN p
"""
Then a SemanticError should be raised at runtime: Alias `v' should be Edge.
Then a SemanticError should be raised at runtime: Alias `v' should be Edge, but got type 'Node'
When executing query:
"""
MATCH (v:player) WHERE (v)-[v]-() RETURN v
"""
Then a SemanticError should be raised at runtime: Alias `v' should be Edge.
Then a SemanticError should be raised at runtime: Alias `v' should be Edge, but got type 'Node'
When executing query:
"""
MATCH (v:player) RETURN (v)-[v]-()
"""
Then a SemanticError should be raised at runtime: Alias `v' should be Edge.
Then a SemanticError should be raised at runtime: Alias `v' should be Edge, but got type 'Node'

Scenario: In Where
When executing query:
Expand Down

0 comments on commit 9f2e98b

Please sign in to comment.