summaryrefslogtreecommitdiffstats
path: root/hugolib/taxonomy_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'hugolib/taxonomy_test.go')
-rw-r--r--hugolib/taxonomy_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/hugolib/taxonomy_test.go b/hugolib/taxonomy_test.go
index 646fdd44f..7ec4bbf91 100644
--- a/hugolib/taxonomy_test.go
+++ b/hugolib/taxonomy_test.go
@@ -200,11 +200,11 @@ permalinkeds:
if preserveTaxonomyNames {
helloWorld := s.getPage(KindTaxonomy, "others", "Hello Hugo world")
require.NotNil(t, helloWorld)
- require.Equal(t, "Hello Hugo world", helloWorld.Title)
+ require.Equal(t, "Hello Hugo world", helloWorld.title)
} else {
helloWorld := s.getPage(KindTaxonomy, "others", "hello-hugo-world")
require.NotNil(t, helloWorld)
- require.Equal(t, "Hello Hugo World", helloWorld.Title)
+ require.Equal(t, "Hello Hugo World", helloWorld.title)
}
// Issue #2977