From fa28df1058e0131364cea2e3ac7f80e934d024a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Erik=20Pedersen?= Date: Wed, 24 Jul 2019 19:50:34 +0200 Subject: [PATCH] hugolib: Fix broken test --- hugolib/collections_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hugolib/collections_test.go b/hugolib/collections_test.go index 06bac80a3..1a261260e 100644 --- a/hugolib/collections_test.go +++ b/hugolib/collections_test.go @@ -123,7 +123,7 @@ func TestCollectionsFuncs(t *testing.T) { pageContent := ` --- -title: "Page" +title: "Page %d" tags: ["blue", "green"] tags_weight: %d --- @@ -131,8 +131,8 @@ tags_weight: %d ` b := newTestSitesBuilder(t) b.WithSimpleConfigFile(). - WithContent("page1.md", fmt.Sprintf(pageContent, 10), "page2.md", fmt.Sprintf(pageContent, 20), - "page3.md", fmt.Sprintf(pageContent, 30)). + WithContent("page1.md", fmt.Sprintf(pageContent, 10, 10), "page2.md", fmt.Sprintf(pageContent, 20, 20), + "page3.md", fmt.Sprintf(pageContent, 30, 30)). WithTemplatesAdded("index.html", ` {{ $uniqPages := first 2 .Site.RegularPages | append .Site.RegularPages | uniq }} {{ $inTrue := in .Site.RegularPages (index .Site.RegularPages 1) }}