summaryrefslogtreecommitdiff
path: root/src/post/draft_post_test.go
diff options
context:
space:
mode:
authorBrian Picciano <mediocregopher@gmail.com>2022-10-12 23:43:31 +0200
committerBrian Picciano <mediocregopher@gmail.com>2022-10-12 23:43:31 +0200
commitd9570411134273d690e783748dd572696fc14c6f (patch)
treeca9d0780bdc2708e190a2194b751966546935e39 /src/post/draft_post_test.go
parentd959985ed0d3509d1369c15bf0c87c35b47eb1db (diff)
Make description an optional field
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 f404bb0..fde5f95 100644
--- a/src/post/draft_post_test.go
+++ b/src/post/draft_post_test.go
@@ -68,6 +68,7 @@ func TestDraftStore(t *testing.T) {
// we will now try updating the post, and ensure it updates properly
post.Title = "something else"
+ post.Description = "some description"
post.Series = "whatever"
post.Body = "anything"
post.Tags = []string{"bar", "baz"}