diff --git a/test/pool.js b/test/pool.js index bab7bbc..4cbce0c 100644 --- a/test/pool.js +++ b/test/pool.js @@ -123,8 +123,8 @@ describe('_create_client', function () { pool._create_client(function (err, client) { assert.ifError(err); assert.ok(client._starttls.success); - client.unbind((err) => { - if (err) console.error(err) + client.unbind((err2) => { + if (err2) console.error(err2) done(); }) });