Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
brianc committed Jun 19, 2024
1 parent 9baa56e commit cac3bd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/pg/test/integration/client/api-tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ suite.test('query with timeout on query basis', (cb) => {
const pool = new pg.Pool()
pool.connect().then((client) => {
client.query(
{text: 'SELECT pg_sleep(20)', query_timeout: 1000},
{ text: 'SELECT pg_sleep(20)', query_timeout: 1000 },
assert.calls(function (err, result) {
assert(err)
assert(err.message === 'Query read timeout')
Expand Down

0 comments on commit cac3bd2

Please sign in to comment.