mirror of https://github.com/nodejs/node.git
test: remove redeclared var in test-domain
PR-URL: https://github.com/nodejs/node/pull/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>pull/5045/head
parent
3874f32277
commit
f48793eb15
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue