From 575acd429c89cf437c6ab655abacd9fbbecd92a4 Mon Sep 17 00:00:00 2001 From: Friedrich Date: Tue, 24 Oct 2023 15:15:32 +0200 Subject: [PATCH] Increase timeout to 90 seconds in integration test. (#182) * Increase timeout to 90 seconds in integration test. * Increase timeout to 120 seconds. --- test/utils/integration/integration.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/utils/integration/integration.go b/test/utils/integration/integration.go index 5eca36d7..35ca9832 100644 --- a/test/utils/integration/integration.go +++ b/test/utils/integration/integration.go @@ -65,7 +65,7 @@ const ( testEnvStartDelay = time.Minute testEnvStartAttempts = 10 BigPollingInterval = 3 * time.Second - BigTimeOut = 60 * time.Second + BigTimeOut = 120 * time.Second SmallTimeOut = 6 * time.Second SmallPollingInterval = 1 * time.Second )