summaryrefslogtreecommitdiff
path: root/test/parallel/test-stdout-cannot-be-closed-child-process-pipe.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-stdout-cannot-be-closed-child-process-pipe.js')
-rw-r--r--test/parallel/test-stdout-cannot-be-closed-child-process-pipe.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/parallel/test-stdout-cannot-be-closed-child-process-pipe.js b/test/parallel/test-stdout-cannot-be-closed-child-process-pipe.js
index bfc7a1ddf4..aa1939ebe2 100644
--- a/test/parallel/test-stdout-cannot-be-closed-child-process-pipe.js
+++ b/test/parallel/test-stdout-cannot-be-closed-child-process-pipe.js
@@ -9,9 +9,9 @@ else
function parent() {
const spawn = require('child_process').spawn;
- var child = spawn(process.execPath, [__filename, 'child']);
- var out = '';
- var err = '';
+ const child = spawn(process.execPath, [__filename, 'child']);
+ let out = '';
+ let err = '';
child.stdout.setEncoding('utf8');
child.stderr.setEncoding('utf8');