summaryrefslogtreecommitdiff
path: root/src/post/draft_post_test.go
diff options
context:
space:
mode:
authorBrian Picciano <mediocregopher@gmail.com>2023-01-18 20:15:12 +0100
committerBrian Picciano <mediocregopher@gmail.com>2023-01-18 20:15:12 +0100
commite7b5b55f6718b25a437a891a06a26c21384b6818 (patch)
tree6c95d222f00806e2d3b335bfd0d04c4be34c740f /src/post/draft_post_test.go
parent4878495914fb9701bedc242eb5087394138c8ee3 (diff)
Add format column to post tables
Diffstat (limited to 'src/post/draft_post_test.go')
-rw-r--r--src/post/draft_post_test.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/post/draft_post_test.go b/src/post/draft_post_test.go
index fde5f95..f7b7de2 100644
--- a/src/post/draft_post_test.go
+++ b/src/post/draft_post_test.go
@@ -72,6 +72,7 @@ func TestDraftStore(t *testing.T) {
post.Series = "whatever"
post.Body = "anything"
post.Tags = []string{"bar", "baz"}
+ post.Format = FormatGemtext
err = h.store.Set(post)
assert.NoError(t, err)