Skip to content

Commit

Permalink
fuzz: ignore sun(any) runtime errors
Browse files Browse the repository at this point in the history
Fixes #464
  • Loading branch information
antonmedv committed Nov 16, 2023
1 parent 5de348e commit 939aca1
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions test/fuzz/fuzz_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ func FuzzExpr(f *testing.F) {
regexp.MustCompile(`invalid date .*`),
regexp.MustCompile(`cannot parse .* as .*`),
regexp.MustCompile(`operator "in" not defined on .*`),
regexp.MustCompile(`cannot sum bool`),
}

env := NewEnv()
Expand Down

0 comments on commit 939aca1

Please sign in to comment.