From 39a136fdb9392262e23f432565b4c86a7bc88bf7 Mon Sep 17 00:00:00 2001 From: Ben Ebsworth Date: Sat, 6 Jul 2019 18:42:40 +1000 Subject: [PATCH] fix raising fatal error on retryablehttp --- test/integration/addons_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/addons_test.go b/test/integration/addons_test.go index 8949c86242..d4678ec88d 100644 --- a/test/integration/addons_test.go +++ b/test/integration/addons_test.go @@ -220,7 +220,7 @@ func testRegistry(t *testing.T) { resp, err := retryablehttp.Get(u.String()) if err != nil { - t.Fatalf("failed get: %v", err) + t.Errorf("failed get: %v", err) } if resp.StatusCode != http.StatusOK {