Skip to content

Commit

Permalink
pg-query-stream/test/error: add arg brackets
Browse files Browse the repository at this point in the history
  • Loading branch information
alxndrsn committed Oct 11, 2023
1 parent cddb20e commit 0017970
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/pg-query-stream/test/error.ts
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ describe('error recovery', () => {
const client = await pool.connect();
const stream = await client.query(query);

await new Promise(resolve => setTimeout(resolve, 10));
await new Promise((resolve) => setTimeout(resolve, 10));

await stream.destroy();
await client.release();
Expand Down

0 comments on commit 0017970

Please sign in to comment.