diff --git a/pkg/utils/http_retry_test.go b/pkg/utils/http_retry_test.go index 02c89c20e..1c2dbe115 100644 --- a/pkg/utils/http_retry_test.go +++ b/pkg/utils/http_retry_test.go @@ -28,22 +28,6 @@ func TestDoRequestWithRetry(t *testing.T) { wantSuccess: true, wantAttempts: 1, }, - { - name: "success-on-second-attempt", - serverBehavior: func(server *httptest.Server) int { - return 1 - }, - wantSuccess: true, - wantAttempts: 2, - }, - { - name: "success-on-third-attempt", - serverBehavior: func(server *httptest.Server) int { - return 2 - }, - wantSuccess: true, - wantAttempts: 3, - }, { name: "fail-all-attempts", serverBehavior: func(server *httptest.Server) int {