Skip to content

Commit

Permalink
fix tck
Browse files Browse the repository at this point in the history
  • Loading branch information
czpmango committed Sep 16, 2021
1 parent 6affe42 commit 0f7c68b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions tests/tck/features/insert/Insert.feature
Original file line number Diff line number Diff line change
Expand Up @@ -490,12 +490,12 @@ Feature: Insert string vid of vertex and edge
"""
INSERT VERTEX student(name, age) VALUES "Tom":(NULL, 12)
"""
Then a ExecutionError should be raised at runtime: Storage Error: The not null field cannot be null.
Then a SemanticError should be raised at runtime: Storage Error: The not null field cannot be null.
When executing query:
"""
INSERT VERTEX student(name, age) VALUES "Tom":(NULL, 12)
"""
Then a ExecutionError should be raised at runtime: Storage Error: The not null field cannot be null.
Then a SemanticError should be raised at runtime: Storage Error: The not null field cannot be null.
# out of fixed_string's size
When executing query:
"""
Expand Down
2 changes: 1 addition & 1 deletion tests/tck/features/insert/InsertEdgeOnDiffParts.feature
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Feature: Insert vertex and edge with if not exists
Given an empty graph
And create a space with following options:
| partition_num | 9 |
| replica_factor | 3 |
| replica_factor | 1 |
| vid_type | FIXED_STRING(20) |
And having executed:
"""
Expand Down

0 comments on commit 0f7c68b

Please sign in to comment.