projects
/
brevno-suite
/
hugo
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
07f2ef9
)
Better error messages for show_plan_test
author
spf13
<steve.francia@gmail.com>
Tue, 4 Nov 2014 05:32:55 +0000
(
00:32
-0500)
committer
spf13
<steve.francia@gmail.com>
Tue, 4 Nov 2014 05:32:55 +0000
(
00:32
-0500)
hugolib/site_show_plan_test.go
patch
|
blob
|
history
diff --git
a/hugolib/site_show_plan_test.go
b/hugolib/site_show_plan_test.go
index 801738ca304ea67378e1a02561790536a7bdb749..d694e68bfcb2bf0d67a5fd8b30339b0abbee3211 100644
(file)
--- 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)
}
}
}