Skip to content

Commit

Permalink
fix UT cases
Browse files Browse the repository at this point in the history
  • Loading branch information
wey-gu committed Sep 22, 2023
1 parent ab58bd2 commit be2bcdb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/tck/features/function/is_inversed.feature
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Feature: is_inversed Function
When executing query:
"""
MATCH (v1:player{name:"Tim Duncan"})-[e]->(v2:player{name:"Tony Parker"})
RETURN IS_INVERSED(e) == TYPEID(e) AS result;
RETURN IS_INVERSED(e) == (TYPEID(e) < 0) AS result;
"""
Then the result should be, in any order:
| result |
Expand All @@ -21,7 +21,7 @@ Feature: is_inversed Function
"""
Then the result should be, in any order:
| result |
| true |
| false |
When executing query:
"""
MATCH (v1:player{name:"Tim Duncan"})-[e]-(v2:player{name:"Tony Parker"})
Expand Down

0 comments on commit be2bcdb

Please sign in to comment.