diff options
author | Brian Picciano <mediocregopher@gmail.com> | 2022-05-14 21:30:18 -0600 |
---|---|---|
committer | Brian Picciano <mediocregopher@gmail.com> | 2022-05-14 21:35:53 -0600 |
commit | 788aba3d0d0bc98c0164f87cf3a4941cf4587a54 (patch) | |
tree | 789ea80de8041352a5e2ecda01334b1bbfc3ddbc /srv/src/post/post_test.go | |
parent | af08122a253916c9f7d923b6a0197db1cbbf536e (diff) |
Fix new index page
Diffstat (limited to 'srv/src/post/post_test.go')
-rw-r--r-- | srv/src/post/post_test.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/srv/src/post/post_test.go b/srv/src/post/post_test.go index c5587c8..db247d1 100644 --- a/srv/src/post/post_test.go +++ b/srv/src/post/post_test.go @@ -159,6 +159,8 @@ func TestStore(t *testing.T) { h.testStoredPost(3), } + posts[1].Tags = []string{"1", "2"} + for _, post := range posts { assert.NoError(t, h.store.Set(post.Post, now)) } |