Fix tests!

This commit is contained in:
Jonny Stoten
2015-10-19 21:02:09 +01:00
parent 0fe43e1a83
commit 2222f9504b
+2 -2
View File
@@ -34,10 +34,10 @@ var knex = Knex({
pool: {
min: 0,
max: 7,
afterCreate: (connection, callback) => {
afterCreate: (connection: any, callback: Function) => {
return callback(null, connection);
},
beforeDestroy: (connection, callback) => {
beforeDestroy: (connection: any, callback: Function) => {
return callback(null, connection);
}
}