diff --git a/hugolib/integration_test.go b/hugolib/integration_test.go
index de8a6179b..417fe2129 100644
--- a/hugolib/integration_test.go
+++ b/hugolib/integration_test.go
@@ -65,20 +65,25 @@ tags: ['T1']
)
b.Build()
- b.AssertFileContent("public/en/posts/index.html",
- "
",
- )
- b.AssertFileContent("public/en/posts/p1/index.html",
- "",
- )
- b.AssertFileContent("public/en/tags/index.html",
- "",
- )
- b.AssertFileContent("public/en/tags/t1/index.html",
- "",
- )
+ // Kind home
b.AssertFileContent("public/en/index.html",
"",
)
+ // Kind section
+ b.AssertFileContent("public/en/posts/index.html",
+ "",
+ )
+ // Kind page
+ b.AssertFileContent("public/en/posts/p1/index.html",
+ "",
+ )
+ // Kind taxonomy
+ b.AssertFileContent("public/en/tags/index.html",
+ "",
+ )
+ // Kind term
+ b.AssertFileContent("public/en/tags/t1/index.html",
+ "",
+ )
}