Skip to content

Commit ce5ba84

Browse files
author
alxndrsn
committed
lint
1 parent 7706ccb commit ce5ba84

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

packages/pg/test/integration/client/multiple-results-tests.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,13 @@ suite.test(
3737
text: `SELECT 'foo'::text as name; SELECT 'bar'::text as baz`,
3838
queryMode: 'extended',
3939
})
40-
assert.fail('Should have thrown');
41-
} catch(err) {
42-
if(err instanceof assert.AssertionError) throw err;
40+
assert.fail('Should have thrown')
41+
} catch (err) {
42+
if (err instanceof assert.AssertionError) throw err
4343

44-
assert.equal(err.severity, 'ERROR');
45-
assert.equal(err.code, '42601');
46-
assert.equal(err.message, 'cannot insert multiple commands into a prepared statement');
44+
assert.equal(err.severity, 'ERROR')
45+
assert.equal(err.code, '42601')
46+
assert.equal(err.message, 'cannot insert multiple commands into a prepared statement')
4747
}
4848

4949
return client.end()

0 commit comments

Comments
 (0)