mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
hugolib: Fix broken test
This commit is contained in:
parent
072aa7f110
commit
fa28df1058
1 changed files with 3 additions and 3 deletions
|
@ -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) }}
|
||||
|
|
Loading…
Reference in a new issue