From 3c22d8034d27a575e81652f2b18c26c705f92862 Mon Sep 17 00:00:00 2001 From: "Arik Jones (aider)" Date: Thu, 19 Sep 2024 16:23:01 -0500 Subject: [PATCH] fix: correct import path and update Config struct usage in test --- cmd/files_test.go | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/cmd/files_test.go b/cmd/files_test.go index c175a71..3cf875e 100644 --- a/cmd/files_test.go +++ b/cmd/files_test.go @@ -6,7 +6,7 @@ import ( "strings" "testing" - "github.com/yourusername/yourproject/internal/config" + "github.com/tnypxl/rollup/internal/config" ) func TestMatchGlob(t *testing.T) { @@ -100,9 +100,10 @@ func TestRunRollup(t *testing.T) { } // Set up test configuration - cfg = &Config{ - FileTypes: []string{"go", "txt"}, - Ignore: []string{"*.json"}, + cfg = &config.Config{ + FileTypes: []string{"go", "txt"}, + Ignore: []string{"*.json"}, + CodeGenerated: []string{}, } path = tempDir