Fixed integration now close connections

This commit is contained in:
Vincent Schoettke 2014-08-28 20:34:09 +02:00
parent 83b2c2b078
commit 36282de16b

View File

@ -10,8 +10,9 @@ var pool = {
expect(connection).to.have.property('__cid');
callback(null, connection);
},
beforeDestroy: function(connection) {
beforeDestroy: function(connection, continueFunc) {
expect(connection).to.have.property('__cid');
continueFunc();
}
};