Skip to content

Commit

Permalink
fix standard issue
Browse files Browse the repository at this point in the history
  • Loading branch information
tunnckoCore committed Mar 22, 2016
1 parent 3d7780c commit e367cf0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ asyncControl
.on('beforeEach', function (fn, next) {
console.log('before each:', fn.name)
})
.on('error', function (err, res) {
console.log('on error:', err)
.on('error', function (er, res) {
console.log('on error:', er)
})
.on('afterEach', function (err, res, fn, next) {
.on('afterEach', function (er, res, fn, next) {
console.log('after each:', fn.name)
})
.on('after', function () {
Expand Down

0 comments on commit e367cf0

Please sign in to comment.