Don't actually hit dl site #1

Merged
jolheiser merged 1 commits from fix-test into main 2021-08-09 03:07:00 +00:00
2 changed files with 2 additions and 2 deletions

2
dl.go
View File

@ -6,7 +6,7 @@ import (
"net/http"
)
const dlURL = "https://golang.org/dl/?mode=json"
var dlURL = "https://golang.org/dl/?mode=json"
// Version is a Go version
type Version struct {

View File

@ -14,7 +14,7 @@ func TestVersions(t *testing.T) {
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
_, _ = w.Write(dlResp)
}))
http.DefaultClient = server.Client()
dlURL = server.URL
versions, err := Versions(context.Background())
if err != nil {