summaryrefslogtreecommitdiffstats
path: root/api/command_join_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'api/command_join_test.go')
-rw-r--r--api/command_join_test.go13
1 files changed, 1 insertions, 12 deletions
diff --git a/api/command_join_test.go b/api/command_join_test.go
index 2b4a5bfe3..d586a522a 100644
--- a/api/command_join_test.go
+++ b/api/command_join_test.go
@@ -41,18 +41,7 @@ func TestJoinCommands(t *testing.T) {
c1 := Client.Must(Client.GetChannels("")).Data.(*model.ChannelList)
- if len(c1.Channels) != 6 { // 4 because of town-square, off-topic and direct
- t.Fatal("didn't join channel")
- }
-
- found := false
- for _, c := range c1.Channels {
- if c.Name == channel2.Name {
- found = true
- break
- }
- }
- if !found {
+ if len(c1.Channels) != 5 {
t.Fatal("didn't join channel")
}
}