From 13639ac924ba3a5606568d193213ea92264db259 Mon Sep 17 00:00:00 2001 From: Jesse Duffield Date: Sat, 24 Dec 2022 09:55:33 +1100 Subject: [PATCH] faster test --- pkg/integration/components/assert.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/integration/components/assert.go b/pkg/integration/components/assert.go index c1ae4cdd2..f2a3137f6 100644 --- a/pkg/integration/components/assert.go +++ b/pkg/integration/components/assert.go @@ -247,7 +247,7 @@ func (self *Assert) matchString(matcher *matcher, context string, getValue func( } func (self *Assert) assertWithRetries(test func() (bool, string)) { - waitTimes := []int{0, 1, 5, 10, 200, 500, 1000, 2000, 4000} + waitTimes := []int{0, 1, 1, 1, 1, 1, 5, 10, 20, 40, 100, 200, 500, 1000, 2000, 4000} var message string for _, waitTime := range waitTimes {