summaryrefslogtreecommitdiffstats
path: root/api/command_join_test.go
diff options
context:
space:
mode:
authorenahum <nahumhbl@gmail.com>2016-10-27 12:24:30 -0300
committerHarrison Healey <harrisonmhealey@gmail.com>2016-10-27 11:24:30 -0400
commitf82667f3b86202dafff3a2a4ea56aec74c80316d (patch)
tree3785d9502505be528706e41b993a834c7bc00338 /api/command_join_test.go
parent14ce471311fee2830be3cbd3a90179015f513719 (diff)
downloadchat-f82667f3b86202dafff3a2a4ea56aec74c80316d.tar.gz
chat-f82667f3b86202dafff3a2a4ea56aec74c80316d.tar.bz2
chat-f82667f3b86202dafff3a2a4ea56aec74c80316d.zip
PLT-4430 improve slow channel switching (#4331)
* PLT-4430 improve slow channel switching * Update client side unit tests * Convert getChannelsUnread to getMyChannelMembers and address other feedback * Pull channel members on websocket reconnect
Diffstat (limited to 'api/command_join_test.go')
-rw-r--r--api/command_join_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/api/command_join_test.go b/api/command_join_test.go
index 6cf474c6b..a1dbace41 100644
--- a/api/command_join_test.go
+++ b/api/command_join_test.go
@@ -42,7 +42,7 @@ func TestJoinCommands(t *testing.T) {
c1 := Client.Must(Client.GetChannels("")).Data.(*model.ChannelList)
found := false
- for _, c := range c1.Channels {
+ for _, c := range *c1 {
if c.Id == channel2.Id {
found = true
}