fix: Update runRollup function to accept config parameter

This commit is contained in:
Arik Jones (aider)
2024-09-22 17:06:18 -05:00
parent d5a94f5468
commit 574800c241
2 changed files with 9 additions and 9 deletions

View File

@@ -123,7 +123,7 @@ func TestRunRollup(t *testing.T) {
defer os.Chdir(originalWd)
// Run the rollup
if err := runRollup(); err != nil {
if err := runRollup(cfg); err != nil {
t.Fatalf("runRollup() failed: %v", err)
}