summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2022-12-24 09:55:33 +1100
committerJesse Duffield <jessedduffield@gmail.com>2022-12-24 19:05:46 +1100
commit13639ac924ba3a5606568d193213ea92264db259 (patch)
tree096eb651c9fe5daf65617906f15793884c58b474
parent5c11b1ecb7cd5da23969c63569d40849ffd4e3d1 (diff)
faster test
-rw-r--r--pkg/integration/components/assert.go2
1 files changed, 1 insertions, 1 deletions
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 {