Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
astefan committed Aug 11, 2023
1 parent 5ab4f45 commit 79a01f7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -551,11 +551,11 @@ public void testSuggestAvailableProcessingCommandsOnParsingError() {
public void testDeprecatedIsNullFunction() {
expectError(
"from test | eval x = is_null(f)",
"line 1:23: is_null function is not supported anymore, please use 'is null' or 'is not null' constructs instead"
"line 1:23: is_null function is not supported anymore, please use 'is null'/'is not null' predicates instead"
);
expectError(
"row x = is_null(f)",
"line 1:10: is_null function is not supported anymore, please use 'is null' or 'is not null' constructs instead"
"line 1:10: is_null function is not supported anymore, please use 'is null'/'is not null' predicates instead"
);
}

Expand Down

0 comments on commit 79a01f7

Please sign in to comment.