summaryrefslogtreecommitdiffstats
path: root/api/command_loadtest.go
diff options
context:
space:
mode:
Diffstat (limited to 'api/command_loadtest.go')
-rw-r--r--api/command_loadtest.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/api/command_loadtest.go b/api/command_loadtest.go
index 5ad2736a0..3b9ebfe47 100644
--- a/api/command_loadtest.go
+++ b/api/command_loadtest.go
@@ -291,7 +291,7 @@ func (me *LoadTestProvider) PostsCommand(c *Context, channelId string, message s
var usernames []string
if result := <-app.Srv.Store.User().GetProfiles(c.TeamId, 0, 1000); result.Err == nil {
- profileUsers := result.Data.(map[string]*model.User)
+ profileUsers := result.Data.([]*model.User)
usernames = make([]string, len(profileUsers))
i := 0
for _, userprof := range profileUsers {