From: spf13 Date: Tue, 4 Nov 2014 05:32:55 +0000 (-0500) Subject: Better error messages for show_plan_test X-Git-Tag: v0.13~345 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=3616d167;p=brevno-suite%2Fhugo Better error messages for show_plan_test --- diff --git a/hugolib/site_show_plan_test.go b/hugolib/site_show_plan_test.go index 801738ca..d694e68b 100644 --- a/hugolib/site_show_plan_test.go +++ b/hugolib/site_show_plan_test.go @@ -47,13 +47,13 @@ func checkShowPlanExpected(t *testing.T, s *Site, expected string) { for _, x := range gotList { if !stringInSlice(x, expectedList) { - t.Errorf("\nShowPlan expected:\n%q\ngot:\n%q", expected, got) + t.Errorf("%v %v %v %v", "\nShowPlan expected:\n", expected, "\ngot:\n", got) } } for _, x := range expectedList { if !stringInSlice(x, gotList) { - t.Errorf("\nShowPlan expected:\n%q\ngot:\n%q", expected, got) + t.Errorf("%v %v %v %v", "\nShowPlan expected:\n", expected, "\ngot:\n", got) } } }