Fix: remove the unnecessary dot in an extension
authorOwen Waller <o.waller@kulawe.com>
Mon, 22 Sep 2014 16:49:39 +0000 (17:49 +0100)
committerspf13 <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

index c8729780e6c6331f889d8d7e8e0aa4f0335ba126..e6dc1e7616af254e022d0ad591576ca00f6b60e1 100644 (file)
@@ -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"},