projects
/
brevno-suite
/
hugo
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3521e8b
)
Fix: remove the unnecessary dot in an extension
author
Owen Waller
<o.waller@kulawe.com>
Mon, 22 Sep 2014 16:49:39 +0000
(17:49 +0100)
committer
spf13
<steve.francia@gmail.com>
Wed, 5 Nov 2014 00:19:09 +0000
(19:19 -0500)
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.
helpers/path_test.go
patch
|
blob
|
history
diff --git
a/helpers/path_test.go
b/helpers/path_test.go
index c8729780e6c6331f889d8d7e8e0aa4f0335ba126..e6dc1e7616af254e022d0ad591576ca00f6b60e1 100644
(file)
--- 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"},