From 13ab5b1902aac78f688943344f47a627ef4efc29 Mon Sep 17 00:00:00 2001 From: Arnas Udovic Date: Sun, 12 Jan 2025 01:03:47 +0200 Subject: [PATCH] fix test --- tree_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tree_test.go b/tree_test.go index b35ece4..e54b269 100644 --- a/tree_test.go +++ b/tree_test.go @@ -22,6 +22,7 @@ func prepare(t *testing.T) Config { "__a", make(map[string]func() string), []string{"exclude_[0-9]+.bin"}, + map[string]AppCallback{}, ) err = PopulateTree("./testdata/sunny1", []string{}, config) @@ -38,6 +39,7 @@ func TestFromNotExistingDirectory(t *testing.T) { "__a", make(map[string]func() string), []string{}, + map[string]AppCallback{}, ) _, err := BuildTree("./testing/i_dont_exist", []string{}, config)