From 9351af382933d456de65acab1451b17677ddb171 Mon Sep 17 00:00:00 2001 From: Jesse Duffield Date: Fri, 16 Sep 2022 08:55:16 -0700 Subject: [PATCH] yet another retry to reduce flakiness --- pkg/integration/deprecated/integration.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/integration/deprecated/integration.go b/pkg/integration/deprecated/integration.go index 9527d1a45..2f9b2ab8c 100644 --- a/pkg/integration/deprecated/integration.go +++ b/pkg/integration/deprecated/integration.go @@ -310,7 +310,7 @@ func getTestSpeeds(testStartSpeed float64, mode Mode, speedStr string) []float64 if startSpeed > 5 { speeds = append(speeds, 5) } - speeds = append(speeds, 1, 0.5) + speeds = append(speeds, 1, 0.5, 0.5) return speeds }