Skip to content

Commit

Permalink
fix tck format
Browse files Browse the repository at this point in the history
  • Loading branch information
critical27 committed Dec 21, 2022
1 parent f03b9d7 commit 3288546
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tests/tck/features/index/Index.feature
Original file line number Diff line number Diff line change
Expand Up @@ -1861,7 +1861,7 @@ Feature: IndexTest_Vid_String
LOOKUP ON t1 WHERE t1.col4 == "carrot" AND t1.col1 > 3 YIELD id(vertex) as id
"""
Then the result should be, in any order:
| id |
| id |
When executing query:
"""
LOOKUP ON t1 WHERE t1.col4 == "carrot" AND t1.col1 >= 3 YIELD id(vertex) as id
Expand All @@ -1874,7 +1874,7 @@ Feature: IndexTest_Vid_String
LOOKUP ON t1 WHERE t1.col4 == "carrot" AND t1.col1 < 3 YIELD id(vertex) as id
"""
Then the result should be, in any order:
| id |
| id |
When executing query:
"""
LOOKUP ON t1 WHERE t1.col4 == "carrot" AND t1.col1 <= 3 YIELD id(vertex) as id
Expand All @@ -1894,7 +1894,7 @@ Feature: IndexTest_Vid_String
LOOKUP ON t1 WHERE t1.col4 == "durian" AND t1.col2 > 2.0 YIELD id(vertex) as id
"""
Then the result should be, in any order:
| id |
| id |
When executing query:
"""
LOOKUP ON t1 WHERE t1.col4 == "durian" AND t1.col2 >= 2.0 YIELD id(vertex) as id
Expand All @@ -1907,7 +1907,7 @@ Feature: IndexTest_Vid_String
LOOKUP ON t1 WHERE t1.col4 == "durian" AND t1.col2 < 2.0 YIELD id(vertex) as id
"""
Then the result should be, in any order:
| id |
| id |
When executing query:
"""
LOOKUP ON t1 WHERE t1.col4 == "durian" AND t1.col2 <= 2.0 YIELD id(vertex) as id
Expand All @@ -1927,7 +1927,7 @@ Feature: IndexTest_Vid_String
LOOKUP ON t1 WHERE t1.col4 == "banana" AND t1.col3 > true YIELD id(vertex) as id
"""
Then the result should be, in any order:
| id |
| id |
When executing query:
"""
LOOKUP ON t1 WHERE t1.col4 == "banana" AND t1.col3 >= true YIELD id(vertex) as id
Expand All @@ -1940,7 +1940,7 @@ Feature: IndexTest_Vid_String
LOOKUP ON t1 WHERE t1.col4 == "banana" AND t1.col3 < true YIELD id(vertex) as id
"""
Then the result should be, in any order:
| id |
| id |
When executing query:
"""
LOOKUP ON t1 WHERE t1.col4 == "banana" AND t1.col3 <= true YIELD id(vertex) as id
Expand Down

0 comments on commit 3288546

Please sign in to comment.