summaryrefslogtreecommitdiff
path: root/test/integration
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration')
-rw-r--r--test/integration/http.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/integration/http.go b/test/integration/http.go
index 951d971..43ebac3 100644
--- a/test/integration/http.go
+++ b/test/integration/http.go
@@ -15,7 +15,8 @@ type testTransport struct {
func (r *testTransport) RoundTrip(request *http.Request) (*http.Response, error) {
response, err := http.DefaultTransport.RoundTrip(request)
- r.t.Logf("%v %v %v %v\n", request.Method, request.URL, response.StatusCode, err)
+ require.NoError(r.t, err)
+ r.t.Logf("%v %v %v\n", response.StatusCode, request.Method, request.URL)
return response, err
}