Skip to content

Commit

Permalink
fix test case
Browse files Browse the repository at this point in the history
  • Loading branch information
critical27 committed Oct 14, 2022
1 parent 0e1e25f commit 2e85b79
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions tests/tck/features/ttl/TTL.feature
Original file line number Diff line number Diff line change
Expand Up @@ -372,6 +372,7 @@ Feature: TTLTest
| "player" | 'CREATE EDGE `player` (\n `id` int64 NULL,\n `age` int64 NULL,\n `address` int64 NULL,\n `score` float NULL\n) ttl_duration = 0, ttl_col = ""' |
And drop the used space

@wtf
Scenario: TTLTest Datatest
Given having executed:
"""
Expand All @@ -394,21 +395,18 @@ Feature: TTLTest
"""
Then the result should be, in any order, with relax comparison:
| node |
| ("1") |
When executing query:
"""
FETCH PROP ON person "1" YIELD person.id as id
"""
Then the result should be, in any order:
| id |
| EMPTY |
When executing query:
"""
FETCH PROP ON * "1" YIELD person.id, career.id
"""
Then the result should be, in any order:
| person.id | career.id |
| EMPTY | EMPTY |
When executing query:
"""
FETCH PROP ON person "2" YIELD person.id
Expand Down Expand Up @@ -492,5 +490,4 @@ Feature: TTLTest
"""
Then the result should be, in any order:
| age |
| EMPTY |
And drop the used space

0 comments on commit 2e85b79

Please sign in to comment.