Skip to content

Commit

Permalink
test: remove redeclared var in test-domain
Browse files Browse the repository at this point in the history
PR-URL: #4984
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Johan Bergström <bugs@bergstroem.nu>
Reviewed-By: Michaël Zasso <mic.besace@gmail.com>
  • Loading branch information
Trott authored and rvagg committed Feb 8, 2016
1 parent bf0383b commit e98772d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/parallel/test-domain.js
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ function fn2(data) {
assert.equal(data, 'data', 'should not be null err argument');
}

var bound = d.intercept(fn2);
bound = d.intercept(fn2);
bound(null, 'data');

// intercepted should never pass first argument to callback
Expand Down

0 comments on commit e98772d

Please sign in to comment.