hugolib: Fix broken shortcode tests
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Tue, 21 Feb 2017 23:14:27 +0000 (00:14 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Tue, 21 Feb 2017 23:14:27 +0000 (00:14 +0100)
hugolib/shortcode_test.go

index cf583106d91790a109d645c830723c9d59dd9407..fe57d7af1be8f4572db851bc8ada3758a0aa0da1 100644 (file)
@@ -302,11 +302,11 @@ func TestExtractShortcodes(t *testing.T) {
                expectErrorMsg   string
        }{
                {"text", "Some text.", "map[]", "Some text.", ""},
-               {"invalid right delim", "{{< tag }}", "", false, "simple:4:.*unrecognized character.*}"},
-               {"invalid close", "\n{{< /tag >}}", "", false, "simple:5:.*got closing shortcode, but none is open"},
-               {"invalid close2", "\n\n{{< tag >}}{{< /anotherTag >}}", "", false, "simple:6: closing tag for shortcode 'anotherTag' does not match start tag"},
-               {"unterminated quote 1", `{{< figure src="im caption="S" >}}`, "", false, "simple:4:.got pos.*"},
-               {"unterminated quote 1", `{{< figure src="im" caption="S >}}`, "", false, "simple:4:.*unterm.*}"},
+               {"invalid right delim", "{{< tag }}", "", false, "simple.md:4:.*unrecognized character.*}"},
+               {"invalid close", "\n{{< /tag >}}", "", false, "simple.md:5:.*got closing shortcode, but none is open"},
+               {"invalid close2", "\n\n{{< tag >}}{{< /anotherTag >}}", "", false, "simple.md:6: closing tag for shortcode 'anotherTag' does not match start tag"},
+               {"unterminated quote 1", `{{< figure src="im caption="S" >}}`, "", false, "simple.md:4:.got pos.*"},
+               {"unterminated quote 1", `{{< figure src="im" caption="S >}}`, "", false, "simple.md:4:.*unterm.*}"},
                {"one shortcode, no markup", "{{< tag >}}", "", testScPlaceholderRegexp, ""},
                {"one shortcode, markup", "{{% tag %}}", "", testScPlaceholderRegexp, ""},
                {"one pos param", "{{% tag param1 %}}", `tag([\"param1\"], true){[]}"]`, testScPlaceholderRegexp, ""},