summaryrefslogtreecommitdiffstats
path: root/hugolib
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2020-02-18 16:55:30 +0100
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2020-02-18 16:55:30 +0100
commitaa3e1830568cabaa8bf3277feeba6cb48746e40c (patch)
tree7b769afc62bdec695a6999746d4d9e71db251f86 /hugolib
parent1b7acfe7634a5d7bbc597ef4dddf4babce5666c5 (diff)
tpl: Fix RSS template for the terms listing
Fixes #6909
Diffstat (limited to 'hugolib')
-rw-r--r--hugolib/taxonomy_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/hugolib/taxonomy_test.go b/hugolib/taxonomy_test.go
index abe4b97cd..6d049a0c3 100644
--- a/hugolib/taxonomy_test.go
+++ b/hugolib/taxonomy_test.go
@@ -561,6 +561,6 @@ categories: ["funny"]
b.Assert(funny.Parent(), qt.Equals, cat)
b.AssertFileContent("public/categories/funny/index.xml", `<link>http://example.com/p/</link>`)
- // TODO https://github.com/gohugoio/hugo/issues/6909 b.AssertFileContent("public/categories/index.xml", `<link>http://example.com/categories/funny/</link>`)
+ b.AssertFileContent("public/categories/index.xml", `<link>http://example.com/categories/funny/</link>`)
}