From f9e5a9029c73a0b9499990f0e344a096c9aacf01 Mon Sep 17 00:00:00 2001 From: Joram Wilander Date: Tue, 5 Jul 2016 11:32:28 -0400 Subject: Fixed error when adding incoming webhook to public channel not currently in (#3483) --- api/webhook_test.go | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'api/webhook_test.go') diff --git a/api/webhook_test.go b/api/webhook_test.go index 80ee8ad7d..95e4d92be 100644 --- a/api/webhook_test.go +++ b/api/webhook_test.go @@ -18,6 +18,7 @@ func TestCreateIncomingHook(t *testing.T) { team := th.SystemAdminTeam channel1 := th.CreateChannel(Client, team) channel2 := th.CreatePrivateChannel(Client, team) + channel3 := th.CreateChannel(Client, team) user2 := th.CreateUser(Client) LinkUserToTeam(user2, team) @@ -68,6 +69,13 @@ func TestCreateIncomingHook(t *testing.T) { } } + Client.Must(Client.LeaveChannel(channel3.Id)) + + hook = &model.IncomingWebhook{ChannelId: channel3.Id, UserId: user.Id, TeamId: team.Id} + if _, err := Client.CreateIncomingWebhook(hook); err != nil { + t.Fatal(err) + } + Client.Logout() Client.Must(Client.LoginById(user2.Id, user2.Password)) Client.SetTeamId(team.Id) -- cgit v1.2.3-1-g7c22