From c7791814c9a6c2ece4b86bfff29f27e6a70444fd Mon Sep 17 00:00:00 2001 From: "Arik Jones (aider)" Date: Thu, 19 Sep 2024 16:21:11 -0500 Subject: [PATCH] fix: add missing imports and correct Config reference in files_test.go --- cmd/files_test.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/cmd/files_test.go b/cmd/files_test.go index 6b4a597..c175a71 100644 --- a/cmd/files_test.go +++ b/cmd/files_test.go @@ -3,7 +3,10 @@ package cmd import ( "os" "path/filepath" + "strings" "testing" + + "github.com/yourusername/yourproject/internal/config" ) func TestMatchGlob(t *testing.T) { @@ -97,7 +100,7 @@ func TestRunRollup(t *testing.T) { } // Set up test configuration - cfg = &config.Config{ + cfg = &Config{ FileTypes: []string{"go", "txt"}, Ignore: []string{"*.json"}, }