Fix flaky test

This commit is contained in:
Frédéric Guillot 2022-05-25 20:34:37 -07:00
parent 1658db7f10
commit 9fa086e471
1 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@ func TestClientWithDelay(t *testing.T) {
func TestClientWithError(t *testing.T) {
clt := New("http://httpbin.org/status/502")
clt.ClientTimeout = 1
clt.ClientTimeout = 5
response, err := clt.Get()
if err != nil {
t.Fatal(err)
@ -30,7 +30,7 @@ func TestClientWithError(t *testing.T) {
}
if !response.HasServerFailure() {
t.Fatal(`A 500 error is considered as server failure`)
t.Fatal(`A 502 error is considered as server failure`)
}
}