Skip to content

Commit

Permalink
Fix test suite for node 0.12
Browse files Browse the repository at this point in the history
  • Loading branch information
tgriesser committed Oct 9, 2016
1 parent 1887965 commit 454b769
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/integration/builder/transaction.js
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ module.exports = function(knex) {
return db.transaction(function() {})
}).then(function () {
throw new Error('should not get here')
}).catch(Promise.TimeoutError, (error) => {})
}).catch(Promise.TimeoutError, function(error) {})
})

});
Expand Down

0 comments on commit 454b769

Please sign in to comment.