summaryrefslogtreecommitdiffstats
path: root/api/channel_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'api/channel_test.go')
-rw-r--r--api/channel_test.go5
1 files changed, 2 insertions, 3 deletions
diff --git a/api/channel_test.go b/api/channel_test.go
index 6ed4d55fa..bdb62677f 100644
--- a/api/channel_test.go
+++ b/api/channel_test.go
@@ -1476,9 +1476,8 @@ func TestDeleteChannel(t *testing.T) {
t.Fatal("should have errored not system admin")
}
- // Only one left in channel, should be able to delete
- if _, err := Client.DeleteChannel(channel4.Id); err != nil {
- t.Fatal(err)
+ if _, err := Client.DeleteChannel(channel4.Id); err == nil {
+ t.Fatal("Should not be able to delete channel, even though only one user is left")
}
th.LoginSystemAdmin()