Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
nbari committed Oct 8, 2017
2 parents 128bb20 + 5857ad7 commit 09f0501
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions responsewriter_test.go
Expand Up @@ -170,7 +170,8 @@ func TestResponseWriterLogger499(t *testing.T) {
})
ts := httptest.NewServer(router)
defer ts.Close()
client := ts.Client()
client.Timeout = time.Duration(time.Millisecond)
client := &http.Client{
Timeout: time.Duration(time.Millisecond),
}
client.Get(ts.URL)
}

0 comments on commit 09f0501

Please sign in to comment.