aboutsummaryrefslogtreecommitdiff
path: root/test/parallel/test-child-process-fork-close.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-child-process-fork-close.js')
-rw-r--r--test/parallel/test-child-process-fork-close.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parallel/test-child-process-fork-close.js b/test/parallel/test-child-process-fork-close.js
index d6e9675ba8..d8b1aa0bf3 100644
--- a/test/parallel/test-child-process-fork-close.js
+++ b/test/parallel/test-child-process-fork-close.js
@@ -3,7 +3,7 @@ const common = require('../common');
const assert = require('assert');
const fork = require('child_process').fork;
-var cp = fork(common.fixturesDir + '/child-process-message-and-exit.js');
+const cp = fork(common.fixturesDir + '/child-process-message-and-exit.js');
let gotMessage = false;
let gotExit = false;