aboutsummaryrefslogtreecommitdiffstats
path: root/client/go/util/http_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'client/go/util/http_test.go')
-rw-r--r--client/go/util/http_test.go8
1 files changed, 6 insertions, 2 deletions
diff --git a/client/go/util/http_test.go b/client/go/util/http_test.go
index e87a1e5ada4..ccb809d198b 100644
--- a/client/go/util/http_test.go
+++ b/client/go/util/http_test.go
@@ -41,11 +41,15 @@ func (c mockHttpClient) UseCertificate(certificates []tls.Certificate) {}
func TestHttpRequest(t *testing.T) {
ActiveHttpClient = mockHttpClient{}
- response, err := HttpGet("http://host", "/okpath", "description")
+ req, err := http.NewRequest("GET", "http://host/okpath", nil)
+ assert.Nil(t, err)
+ response, err := HttpDo(req, time.Second*10, "description")
assert.Nil(t, err)
assert.Equal(t, 200, response.StatusCode)
- response, err = HttpGet("http://host", "/otherpath", "description")
+ req, err = http.NewRequest("GET", "http://host/otherpath", nil)
+ assert.Nil(t, err)
+ response, err = HttpDo(req, time.Second*10, "description")
assert.Nil(t, err)
assert.Equal(t, 500, response.StatusCode)
}