aboutsummaryrefslogtreecommitdiff
path: root/test/parallel/test-child-process-send-returns-boolean.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-child-process-send-returns-boolean.js')
-rw-r--r--test/parallel/test-child-process-send-returns-boolean.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parallel/test-child-process-send-returns-boolean.js b/test/parallel/test-child-process-send-returns-boolean.js
index 941a2da645..460c2b0022 100644
--- a/test/parallel/test-child-process-send-returns-boolean.js
+++ b/test/parallel/test-child-process-send-returns-boolean.js
@@ -15,7 +15,7 @@ assert.strictEqual(rv, true);
const spawnOptions = { stdio: ['pipe', 'pipe', 'pipe', 'ipc'] };
const s = spawn(process.execPath, [emptyFile], spawnOptions);
-var handle = null;
+let handle = null;
s.on('exit', function() {
handle.close();
});