Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions test/fuzz/fuzz_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ func FuzzExpr(f *testing.F) {
regexp.MustCompile(`error parsing regexp`),
regexp.MustCompile(`integer divide by zero`),
regexp.MustCompile(`interface conversion`),
regexp.MustCompile(`invalid argument for .*`),
regexp.MustCompile(`invalid argument`),
regexp.MustCompile(`invalid character`),
regexp.MustCompile(`invalid operation`),
regexp.MustCompile(`invalid duration`),
Expand All @@ -46,7 +46,6 @@ func FuzzExpr(f *testing.F) {
regexp.MustCompile(`reflect: string index out of range`),
regexp.MustCompile(`strings: negative Repeat count`),
regexp.MustCompile(`strings: illegal bytes to escape`),
regexp.MustCompile(`operator "in" not defined on int`),
regexp.MustCompile(`invalid date .*`),
regexp.MustCompile(`cannot parse .* as .*`),
regexp.MustCompile(`operator "in" not defined on .*`),
Expand Down
Loading