Missed fixing setup.

This commit is contained in:
Tobias Weingartner 2016-04-16 17:13:13 -07:00
parent ecf91f525f
commit 5a0d373fcd

View file

@ -59,8 +59,8 @@ func TestMarkdownParse(t *testing.T) {
}`, false, []markdown.Config{{
PathScope: "/blog",
Extensions: map[string]struct{}{
".md": struct{}{},
".txt": struct{}{},
".md": {},
".txt": {},
},
Styles: []string{"/resources/css/blog.css"},
Scripts: []string{"/resources/js/blog.js"},
@ -72,7 +72,7 @@ func TestMarkdownParse(t *testing.T) {
}`, false, []markdown.Config{{
PathScope: "/blog",
Extensions: map[string]struct{}{
".md": struct{}{},
".md": {},
},
Template: markdown.GetDefaultTemplate(),
}}},