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
Rich Trott 2016-01-30 20:08:42 -08:00
parent 3874f32277
commit f48793eb15
1 changed files with 1 additions and 1 deletions

View File

@ -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