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: nodejs#4984
Reviewed-By: James M Snell <[email protected]>
Reviewed-By: Johan Bergström <[email protected]>
Reviewed-By: Michaël Zasso <[email protected]>
  • Loading branch information
Trott authored and Michael Scovetta committed Apr 2, 2016
1 parent 564d2d8 commit 26a53dd
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 26a53dd

Please sign in to comment.