From 3288546ebfe6550c53acf5c975d23795bd97c179 Mon Sep 17 00:00:00 2001 From: Doodle <13706157+critical27@users.noreply.github.com> Date: Wed, 21 Dec 2022 18:02:10 +0800 Subject: [PATCH] fix tck format --- tests/tck/features/index/Index.feature | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/tck/features/index/Index.feature b/tests/tck/features/index/Index.feature index d3e2aba08ff..905312cb938 100644 --- a/tests/tck/features/index/Index.feature +++ b/tests/tck/features/index/Index.feature @@ -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 @@ -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 @@ -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 @@ -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 @@ -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 @@ -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