From 56c86f917e02c173344f03e4551153ba74519a67 Mon Sep 17 00:00:00 2001 From: Celestino Amoroso Date: Mon, 6 May 2024 10:38:45 +0200 Subject: [PATCH] funcs_test.go: Added Setenv("EXPR_PATH",".") --- funcs_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/funcs_test.go b/funcs_test.go index ac14581..b984b12 100644 --- a/funcs_test.go +++ b/funcs_test.go @@ -40,6 +40,8 @@ func TestFuncs(t *testing.T) { /* 27 */ {`builtin "import"; import("./sample-export-all.expr"); six()`, int64(6), nil}, } + t.Setenv("EXPR_PATH", ".") + // parserTest(t, "Func", inputs[25:26]) parserTest(t, "Func", inputs) }