diff --git a/tests/tck/features/update/Update.IntVid.feature b/tests/tck/features/update/Update.IntVid.feature index 0b9f3762e44765865592eb2b4aac17e982c31131..dc8541afbd27e8d8a4d59b94fa39c22c33684eca 100644 --- a/tests/tck/features/update/Update.IntVid.feature +++ b/tests/tck/features/update/Update.IntVid.feature @@ -314,7 +314,7 @@ Feature: Update int vid of vertex and edge SET student_default.name = "Lily", student_default.age = "10" YIELD $^.student_default.name AS Name, $^.student_default.gender AS Gender """ - Then a ExecutionError should be raised at runtime: Storage Error: Atomic operation failed. + Then a ExecutionError should be raised at runtime: Storage Error: Invalid data, may be wrong value type. # Insertable: vertex 113 ("Jack") --> ("Jack", "Three") # 113 is nonexistent, gender with default value, # update student_default.age with string value @@ -324,7 +324,7 @@ Feature: Update int vid of vertex and edge SET student_default.name = "Ann", student_default.age = "10" YIELD $^.student_default.name AS Name, $^.student_default.gender AS Gender """ - Then a ExecutionError should be raised at runtime: Storage Error: Atomic operation failed. + Then a ExecutionError should be raised at runtime: Storage Error: Invalid data, may be wrong value type. # Insertable success, 115 is nonexistent, name and age without default value, # the filter is always true. When executing query: diff --git a/tests/tck/features/update/Update.feature b/tests/tck/features/update/Update.feature index 40cc04c851ad62027bc7de6eacc7042c4a06294c..781e66bce6e09898ac337a1e015cdd14aed8ff63 100644 --- a/tests/tck/features/update/Update.feature +++ b/tests/tck/features/update/Update.feature @@ -311,7 +311,7 @@ Feature: Update string vid of vertex and edge SET student_default.name = "Lily", student_default.age = "10" YIELD $^.student_default.name AS Name, $^.student_default.gender AS Gender """ - Then a ExecutionError should be raised at runtime: Storage Error: Atomic operation failed. + Then a ExecutionError should be raised at runtime: Storage Error: Invalid data, may be wrong value type. # Insertable: vertex "113" ("Jack") --> ("Jack", "Three") # 113 is nonexistent, gender with default value, # update student_default.age with string value @@ -321,7 +321,7 @@ Feature: Update string vid of vertex and edge SET student_default.name = "Ann", student_default.age = "10" YIELD $^.student_default.name AS Name, $^.student_default.gender AS Gender """ - Then a ExecutionError should be raised at runtime: Storage Error: Atomic operation failed. + Then a ExecutionError should be raised at runtime: Storage Error: Invalid data, may be wrong value type. # Insertable success, "115" is nonexistent, name and age without default value, # the filter is always true. When executing query: @@ -841,7 +841,7 @@ Feature: Update string vid of vertex and edge SET name = "Lily", age = "10" YIELD name AS Name, gender AS Gender """ - Then a ExecutionError should be raised at runtime: Storage Error: Atomic operation failed. + Then a ExecutionError should be raised at runtime: Storage Error: Invalid data, may be wrong value type. # Insertable: vertex "113" ("Jack") --> ("Jack", "Three") # 113 is nonexistent, gender with default value, # update student_default.age with string value @@ -851,7 +851,7 @@ Feature: Update string vid of vertex and edge SET name = "Ann", age = "10" YIELD name AS Name, gender AS Gender """ - Then a ExecutionError should be raised at runtime: Storage Error: Atomic operation failed. + Then a ExecutionError should be raised at runtime: Storage Error: Invalid data, may be wrong value type. # Insertable success, "115" is nonexistent, name and age without default value, # the filter is always true. When executing query: