mirror of
https://github.com/caddyserver/caddy.git
synced 2025-01-07 11:28:48 +03:00
Missed fixing setup.
This commit is contained in:
parent
ecf91f525f
commit
5a0d373fcd
1 changed files with 3 additions and 3 deletions
|
@ -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(),
|
||||
}}},
|
||||
|
|
Loading…
Reference in a new issue