Просмотр исходного кода

Merge pull request #45949 from thaJeztah/rename_var

testutil: rename variable that collided with import
Bjorn Neergaard 2 лет назад
Родитель
Сommit
f2c0df5cd6
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      testutil/request/request.go

+ 2 - 2
testutil/request/request.go

@@ -86,11 +86,11 @@ func Do(endpoint string, modifiers ...func(*Options)) (*http.Response, io.ReadCl
 	if err != nil {
 	if err != nil {
 		return nil, nil, err
 		return nil, nil, err
 	}
 	}
-	client, err := newHTTPClient(opts.host)
+	httpClient, err := newHTTPClient(opts.host)
 	if err != nil {
 	if err != nil {
 		return nil, nil, err
 		return nil, nil, err
 	}
 	}
-	resp, err := client.Do(req)
+	resp, err := httpClient.Do(req)
 	var body io.ReadCloser
 	var body io.ReadCloser
 	if resp != nil {
 	if resp != nil {
 		body = ioutils.NewReadCloserWrapper(resp.Body, func() error {
 		body = ioutils.NewReadCloserWrapper(resp.Body, func() error {