From fca1cf9fd6f0792808c674964ce73692eef82e32 Mon Sep 17 00:00:00 2001 From: niksis02 Date: Tue, 8 Apr 2025 18:12:36 +0400 Subject: [PATCH] fix: Increases the context cancelation deadline in integration tests. Increases the context cancelation deadline to `30` seconds to avoid timeouts in relatively large tests. --- tests/integration/tests.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/tests.go b/tests/integration/tests.go index d456885..d8b99b1 100644 --- a/tests/integration/tests.go +++ b/tests/integration/tests.go @@ -39,7 +39,7 @@ import ( ) var ( - shortTimeout = 10 * time.Second + shortTimeout = 30 * time.Second longTimeout = 60 * time.Second iso8601Format = "20060102T150405Z" timefmt = "Mon, 02 Jan 2006 15:04:05 GMT"