Replace poolSize by max in error test

This commit is contained in:
Dominic Letz 2018-07-09 11:46:56 +08:00 committed by GitHub
parent 1cbd507b8c
commit 2ea5f91f4a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,7 +3,7 @@ var helper = require('./test-helper')
const pg = helper.pg
// first make pool hold 2 clients
pg.defaults.poolSize = 2
pg.defaults.max = 2
const pool = new pg.Pool()