From e57c95ffe83f98fc49c3bc3ddd1d2572a8c84b78 Mon Sep 17 00:00:00 2001 From: Brian Carlson Date: Thu, 1 Aug 2024 14:55:52 -0500 Subject: [PATCH] Close client in test --- packages/pg/test/integration/gh-issues/3174-tests.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/pg/test/integration/gh-issues/3174-tests.js b/packages/pg/test/integration/gh-issues/3174-tests.js index 23bc2c4ea..bfef61245 100644 --- a/packages/pg/test/integration/gh-issues/3174-tests.js +++ b/packages/pg/test/integration/gh-issues/3174-tests.js @@ -120,9 +120,9 @@ suite.testAsync('Out of order parseComplete on extended query is catchable', asy }) await client.query('SELECT $1', ['foo']) - // await client.end() - await delay(100) + await delay(40) assert(cli.native || errorHit) + await client.end() await closeServer() })