From 0027d998555d47f9a75a896d8c6c85a8b4645ad0 Mon Sep 17 00:00:00 2001 From: Harrison Healey Date: Fri, 7 Sep 2018 09:24:18 -0400 Subject: MM-11855 Add App.HTTPService to allow mocking of HTTP client (#9359) * MM-11855 Add App.HTTPService to allow mocking of HTTP client * Initialize HTTPService earlier --- app/command.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/command.go') diff --git a/app/command.go b/app/command.go index 92c35865a..124668f6b 100644 --- a/app/command.go +++ b/app/command.go @@ -244,7 +244,7 @@ func (a *App) ExecuteCommand(args *model.CommandArgs) (*model.CommandResponse, * req.Header.Set("Content-Type", "application/x-www-form-urlencoded") } - if resp, err := a.HTTPClient(false).Do(req); err != nil { + if resp, err := a.HTTPService.MakeClient(false).Do(req); err != nil { return nil, model.NewAppError("command", "api.command.execute_command.failed.app_error", map[string]interface{}{"Trigger": trigger}, err.Error(), http.StatusInternalServerError) } else { if resp.StatusCode == http.StatusOK { -- cgit v1.2.3-1-g7c22