From 339ee37143ca5a6bb22bbc1b0468d785f450cfb7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Erik=20Pedersen?= Date: Wed, 9 Oct 2019 10:49:52 +0200 Subject: [PATCH] Simplify test output to simplify diffing --- hugolib/testhelpers_test.go | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/hugolib/testhelpers_test.go b/hugolib/testhelpers_test.go index 6e00a8ee0..353cc9ec6 100644 --- a/hugolib/testhelpers_test.go +++ b/hugolib/testhelpers_test.go @@ -917,13 +917,12 @@ func content(c resource.ContentProvider) string { func dumpPages(pages ...page.Page) { fmt.Println("---------") - for i, p := range pages { + for _, p := range pages { var meta interface{} if p.File() != nil && p.File().FileInfo() != nil { meta = p.File().FileInfo().Meta() } - fmt.Printf("%d: Kind: %s Title: %-10s RelPermalink: %-10s Path: %-10s sections: %s Lang: %s Meta: %v\n", - i+1, + fmt.Printf("Kind: %s Title: %-10s RelPermalink: %-10s Path: %-10s sections: %s Lang: %s Meta: %v\n", p.Kind(), p.Title(), p.RelPermalink(), p.Path(), p.SectionsPath(), p.Lang(), meta) } }