diff options
Diffstat (limited to 'api/command_loadtest_test.go')
-rw-r--r-- | api/command_loadtest_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/api/command_loadtest_test.go b/api/command_loadtest_test.go index 7cb77cf18..1debc766a 100644 --- a/api/command_loadtest_test.go +++ b/api/command_loadtest_test.go @@ -201,12 +201,12 @@ func TestLoadTestUrlCommands(t *testing.T) { t.Fatal("/loadtest url for README.md should've executed") } - command = "/loadtest url test-emoticons.md" + command = "/loadtest url test-emoticons1.md" if r := Client.Must(Client.Command(channel.Id, command, false)).Data.(*model.CommandResponse); r.Text != "Loading data..." { t.Fatal("/loadtest url for test-emoticons.md should've executed") } - command = "/loadtest url test-emoticons" + command = "/loadtest url test-emoticons1" if r := Client.Must(Client.Command(channel.Id, command, false)).Data.(*model.CommandResponse); r.Text != "Loading data..." { t.Fatal("/loadtest url for test-emoticons should've executed") } |