From 299c729371a9ff75bc0f3326dfe0ccb045776fe0 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 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/4984 Reviewed-By: James M Snell Reviewed-By: Johan Bergström Reviewed-By: Michaël Zasso --- 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