summaryrefslogtreecommitdiffstats
path: root/create/content_test.go
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2017-06-22 20:30:01 +0200
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2017-06-22 22:00:42 +0200
commite908d955d25cc5a2a5c783de4de569399773e23e (patch)
treeb87874c5ad69ed59ea7d8cd9e62da217f6790203 /create/content_test.go
parent8b620f7a8a729943d279e20a3250304e7a7713cf (diff)
create: Fix archetype regression when no archetype file
Fixes #3626
Diffstat (limited to 'create/content_test.go')
-rw-r--r--create/content_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/create/content_test.go b/create/content_test.go
index e8857baf2..bd7c34a1d 100644
--- a/create/content_test.go
+++ b/create/content_test.go
@@ -46,8 +46,8 @@ func TestNewContent(t *testing.T) {
{"post", "post/sample-1.md", []string{`title = "Post Arch title"`, `test = "test1"`, "date = \"2015-01-12T19:20:04-07:00\""}},
{"post", "post/org-1.org", []string{`#+title: ORG-1`}},
{"emptydate", "post/sample-ed.md", []string{`title = "Empty Date Arch title"`, `test = "test1"`}},
- {"stump", "stump/sample-2.md", []string{`title = "Sample 2"`}}, // no archetype file
- {"", "sample-3.md", []string{`title = "Sample 3"`}}, // no archetype
+ {"stump", "stump/sample-2.md", []string{`title: "Sample 2"`}}, // no archetype file
+ {"", "sample-3.md", []string{`title: "Sample 3"`}}, // no archetype
{"product", "product/sample-4.md", []string{`title = "SAMPLE-4"`}}, // empty archetype front matter
}