Fix: remove the unnecessary dot in an extension - hugo - [fork] hugo port for 9front
(HTM) git clone git@git.drkhsh.at/hugo.git
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) Submodules
(DIR) README
(DIR) LICENSE
---
(DIR) commit 5906c8652dfb63e9e54b718ea5787c7231816c12
(DIR) parent 3521e8b1e57feb7ff9625a7e8bc453e10ba11b9e
(HTM) Author: Owen Waller <o.waller@kulawe.com>
Date: Mon, 22 Sep 2014 17:49:39 +0100
Fix: remove the unnecessary dot in an extension
Oops minor typo. The new extension passed to ReplaceExtension should
not have a dot in it. The test data bas been updated to reflect this.
Diffstat:
M helpers/path_test.go | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
(DIR) diff --git a/helpers/path_test.go b/helpers/path_test.go
@@ -86,7 +86,7 @@ func TestReplaceExtension(t *testing.T) {
{"banana/pie/index.html", "xml", "index.xml"},
{"../pies/fish/index.html", "xml", "index.xml"},
// but these all fail
- {"filename-without-ext", ".ext", "filename-without-an-ext.ext"},
+ {"filename-without-an-ext", "ext", "filename-without-an-ext.ext"},
{"/filename-without-an-ext", "ext", "filename-without-an-ext.ext"},
{"/directory/mydir/", "ext", ".ext"},
{"mydir/", "ext", ".ext"},