summaryrefslogtreecommitdiffstats
path: root/api/post_test.go
diff options
context:
space:
mode:
authorJoram Wilander <jwawilander@gmail.com>2017-03-31 12:25:39 -0400
committerHarrison Healey <harrisonmhealey@gmail.com>2017-03-31 12:25:39 -0400
commitaba07e5cb9e9b5668c4fb94bfe9f096a26538528 (patch)
tree4a7348f71da063051cd77677cd37313760e9b9b8 /api/post_test.go
parent84826bf5632a9afb2c621b8cbcf935ad03943997 (diff)
downloadchat-aba07e5cb9e9b5668c4fb94bfe9f096a26538528.tar.gz
chat-aba07e5cb9e9b5668c4fb94bfe9f096a26538528.tar.bz2
chat-aba07e5cb9e9b5668c4fb94bfe9f096a26538528.zip
PLT-5483 Fix bug where flagged posts endpoint returned posts on other teams (#5765)
* Fix bug where flagged posts endpoint returned posts on other teams * Include flagged posts from DMs/GMs
Diffstat (limited to 'api/post_test.go')
-rw-r--r--api/post_test.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/api/post_test.go b/api/post_test.go
index 6558aeb5b..a72074547 100644
--- a/api/post_test.go
+++ b/api/post_test.go
@@ -1115,6 +1115,11 @@ func TestGetFlaggedPosts(t *testing.T) {
if len(r2.Order) != 0 {
t.Fatal("should not have gotten a flagged post")
}
+
+ Client.SetTeamId(model.NewId())
+ if _, err := Client.GetFlaggedPosts(0, 2); err == nil {
+ t.Fatal("should have failed - bad team id")
+ }
}
func TestGetMessageForNotification(t *testing.T) {