Better error messages for show_plan_test - hugo - [fork] hugo port for 9front
HTML git clone git@git.drkhsh.at/hugo.git
DIR Log
DIR Files
DIR Refs
DIR Submodules
DIR README
DIR LICENSE
---
DIR commit 3616d16701d374af33c551fe56a1baeadeb50460
DIR parent 07f2ef9c5e1171934c5abb1001b821bdd946d768
HTML Author: spf13 <steve.francia@gmail.com>
Date: Tue, 4 Nov 2014 00:32:55 -0500
Better error messages for show_plan_test
Diffstat:
M hugolib/site_show_plan_test.go | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
---
DIR diff --git 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)
}
}
}