Skip to content

Commit 2f5e812

Browse files
author
Shayon Mukherjee
committed
Lint fix
1 parent e3f89ce commit 2f5e812

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

packages/pg/test/unit/connection-parameters/creation-tests.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,10 @@ test('libpq connection string building', function () {
188188
assert.calls(function (err, constring) {
189189
assert(!err)
190190
var parts = constring.split(/ (?=([^\']*\'[^\']*\')*[^\']*$)/)
191-
checkForPart(parts, "options='-c statement_timeout=5000 -c idle_in_transaction_session_timeout=5000 -c geqo=off -c foobar=off'")
191+
checkForPart(
192+
parts,
193+
"options='-c statement_timeout=5000 -c idle_in_transaction_session_timeout=5000 -c geqo=off -c foobar=off'"
194+
)
192195
})
193196
)
194197
})

0 commit comments

Comments
 (0)