summaryrefslogtreecommitdiffstats
path: root/app/post_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'app/post_test.go')
-rw-r--r--app/post_test.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/app/post_test.go b/app/post_test.go
index 92eb8857e..5fa3d50d6 100644
--- a/app/post_test.go
+++ b/app/post_test.go
@@ -20,6 +20,7 @@ import (
func TestUpdatePostEditAt(t *testing.T) {
th := Setup().InitBasic()
+ defer th.TearDown()
post := &model.Post{}
*post = *th.BasicPost
@@ -47,6 +48,7 @@ func TestPostReplyToPostWhereRootPosterLeftChannel(t *testing.T) {
// This test ensures that when replying to a root post made by a user who has since left the channel, the reply
// post completes successfully. This is a regression test for PLT-6523.
th := Setup().InitBasic()
+ defer th.TearDown()
channel := th.BasicChannel
userInChannel := th.BasicUser2
@@ -78,6 +80,7 @@ func TestPostReplyToPostWhereRootPosterLeftChannel(t *testing.T) {
func TestPostAction(t *testing.T) {
th := Setup().InitBasic()
+ defer th.TearDown()
allowedInternalConnections := *utils.Cfg.ServiceSettings.AllowedUntrustedInternalConnections
defer func() {