From f93b42b6ac4652da17c46f297fd11476a7687926 Mon Sep 17 00:00:00 2001 From: Jack Christensen Date: Mon, 29 May 2023 10:35:38 -0500 Subject: [PATCH] Allow more time for TestConnExecBatchHuge --- pgconn/pgconn_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pgconn/pgconn_test.go b/pgconn/pgconn_test.go index 2f040378..330b5d43 100644 --- a/pgconn/pgconn_test.go +++ b/pgconn/pgconn_test.go @@ -1380,7 +1380,7 @@ func TestConnExecBatchHuge(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() pgConn, err := pgconn.Connect(ctx, os.Getenv("PGX_TEST_DATABASE"))