summaryrefslogtreecommitdiffstats
path: root/tpl/template_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'tpl/template_test.go')
-rw-r--r--tpl/template_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/tpl/template_test.go b/tpl/template_test.go
index 20a887b1c..8e99f2fb4 100644
--- a/tpl/template_test.go
+++ b/tpl/template_test.go
@@ -956,7 +956,7 @@ func TestMarkdownify(t *testing.T) {
result := Markdownify("Hello **World!**")
- expect := template.HTML("<p>Hello <strong>World!</strong></p>\n")
+ expect := template.HTML("Hello <strong>World!</strong>")
if result != expect {
t.Errorf("Markdownify: got '%s', expected '%s'", result, expect)