Better error messages for show_plan_test
authorspf13 <steve.francia@gmail.com>
Tue, 4 Nov 2014 05:32:55 +0000 (00:32 -0500)
committerspf13 <steve.francia@gmail.com>
Tue, 4 Nov 2014 05:32:55 +0000 (00:32 -0500)
hugolib/site_show_plan_test.go

index 801738ca304ea67378e1a02561790536a7bdb749..d694e68bfcb2bf0d67a5fd8b30339b0abbee3211 100644 (file)
@@ -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)
                }
        }
 }