diff options
Diffstat (limited to 'cmd/krino/render_test.go')
| -rw-r--r-- | cmd/krino/render_test.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cmd/krino/render_test.go b/cmd/krino/render_test.go index 0a6ae26..6f29b51 100644 --- a/cmd/krino/render_test.go +++ b/cmd/krino/render_test.go @@ -90,7 +90,7 @@ func TestPrintPlan(t *testing.T) { } var buf bytes.Buffer - printPlan(&buf, dp, false) + printPlan(&buf, dp, false, palette{}) out := buf.String() for _, want := range []string{ @@ -138,7 +138,7 @@ func TestPrintPlanSkippedStep(t *testing.T) { }, } var buf bytes.Buffer - printPlan(&buf, dp, false) + printPlan(&buf, dp, false, palette{}) out := buf.String() if !strings.Contains(out, "copy skipped: target exists") { t.Errorf("skipped step should show its reason in place of the destination:\n%s", out) @@ -191,7 +191,7 @@ func TestPrintPlanRowNumberAlignment(t *testing.T) { } var buf bytes.Buffer - printPlan(&buf, dp, false) + printPlan(&buf, dp, false, palette{}) out := buf.String() for _, want := range []string{ @@ -235,7 +235,7 @@ func TestPrintPlanCountsFileOnceWithBothWarningKinds(t *testing.T) { }, } var buf bytes.Buffer - printPlan(&buf, dp, false) + printPlan(&buf, dp, false, palette{}) out := buf.String() for _, want := range []string{ |
