aboutsummaryrefslogtreecommitdiff
path: root/go/vcs/http.go
diff options
context:
space:
mode:
Diffstat (limited to 'go/vcs/http.go')
-rw-r--r--go/vcs/http.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/go/vcs/http.go b/go/vcs/http.go
index 9618818..857c886 100644
--- a/go/vcs/http.go
+++ b/go/vcs/http.go
@@ -15,7 +15,7 @@ import (
// httpClient is the default HTTP client, but a variable so it can be
// changed by tests, without modifying http.DefaultClient.
-var httpClient = http.DefaultClient
+var httpClient = http.DefaultClient //nolint: gochecknoglobals
// httpGET returns the data from an HTTP GET request for the given URL.
func httpGET(url string) ([]byte, error) {