From ae9aa1fa955e69666e7df7733e28849477de284f Mon Sep 17 00:00:00 2001 From: Ville Vesilehto Date: Mon, 19 Jan 2026 11:47:35 +0200 Subject: [PATCH] fix(fuzz): skip invalid location name errors Signed-off-by: Ville Vesilehto --- test/fuzz/fuzz_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/test/fuzz/fuzz_test.go b/test/fuzz/fuzz_test.go index 684df025..91a85d4f 100644 --- a/test/fuzz/fuzz_test.go +++ b/test/fuzz/fuzz_test.go @@ -33,6 +33,7 @@ func FuzzExpr(f *testing.F) { regexp.MustCompile(`time: missing unit in duration`), regexp.MustCompile(`time: unknown unit .* in duration`), regexp.MustCompile(`unknown time zone`), + regexp.MustCompile(`invalid location name`), regexp.MustCompile(`json: unsupported value`), regexp.MustCompile(`unexpected end of JSON input`), regexp.MustCompile(`memory budget exceeded`),