Don't actually hit dl site
continuous-integration/drone/pr Build is passing
Details
continuous-integration/drone/pr Build is passing
Details
Signed-off-by: jolheiser <john.olheiser@gmail.com>pull/1/head
parent
4d2af9ae20
commit
c019ab570b
2
dl.go
2
dl.go
|
@ -6,7 +6,7 @@ import (
|
||||||
"net/http"
|
"net/http"
|
||||||
)
|
)
|
||||||
|
|
||||||
const dlURL = "https://golang.org/dl/?mode=json"
|
var dlURL = "https://golang.org/dl/?mode=json"
|
||||||
|
|
||||||
// Version is a Go version
|
// Version is a Go version
|
||||||
type Version struct {
|
type Version struct {
|
||||||
|
|
|
@ -14,7 +14,7 @@ func TestVersions(t *testing.T) {
|
||||||
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||||
_, _ = w.Write(dlResp)
|
_, _ = w.Write(dlResp)
|
||||||
}))
|
}))
|
||||||
http.DefaultClient = server.Client()
|
dlURL = server.URL
|
||||||
|
|
||||||
versions, err := Versions(context.Background())
|
versions, err := Versions(context.Background())
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
Loading…
Reference in New Issue