From e3da43c3616bca36f0259d73de8ad34b07059c40 Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Sat, 30 Jan 2016 20:08:42 -0800 Subject: [PATCH] test: remove redeclared var in test-domain --- test/parallel/test-domain.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/parallel/test-domain.js b/test/parallel/test-domain.js index bef5e942e057a1..19cd964a28923a 100644 --- a/test/parallel/test-domain.js +++ b/test/parallel/test-domain.js @@ -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