diff --git a/test/e2e/apimachinery/watch.go b/test/e2e/apimachinery/watch.go index 6a46c6621b2..b8e178d6dae 100644 --- a/test/e2e/apimachinery/watch.go +++ b/test/e2e/apimachinery/watch.go @@ -191,7 +191,7 @@ func expectNoEvent(w watch.Interface, eventType watch.EventType, object runtime. } func waitForEvent(w watch.Interface, expectType watch.EventType, expectObject runtime.Object) (watch.Event, bool) { - stopTimer := time.NewTimer(10 * time.Second) + stopTimer := time.NewTimer(1 * time.Minute) for { select { case actual := <-w.ResultChan():