From 34f17a6048f69873529c1c0bc42e3b19be4a8c94 Mon Sep 17 00:00:00 2001 From: Jack Christensen Date: Sun, 18 Jun 2023 08:36:03 -0500 Subject: [PATCH] Allow more time for test on slow CI --- pgxpool/pool_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pgxpool/pool_test.go b/pgxpool/pool_test.go index 1fd300a6..5e529b0c 100644 --- a/pgxpool/pool_test.go +++ b/pgxpool/pool_test.go @@ -332,7 +332,7 @@ func TestPoolBeforeAcquire(t *testing.T) { func TestPoolAfterRelease(t *testing.T) { t.Parallel() - ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second) + ctx, cancel := context.WithTimeout(context.Background(), 30*time.Second) defer cancel() func() {