aboutsummaryrefslogtreecommitdiff
path: root/test/parallel/test-child-process-set-blocking.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-child-process-set-blocking.js')
-rw-r--r--test/parallel/test-child-process-set-blocking.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/parallel/test-child-process-set-blocking.js b/test/parallel/test-child-process-set-blocking.js
index 5a542fa97e..54037aea69 100644
--- a/test/parallel/test-child-process-set-blocking.js
+++ b/test/parallel/test-child-process-set-blocking.js
@@ -3,9 +3,9 @@ const common = require('../common');
const assert = require('assert');
const ch = require('child_process');
-var SIZE = 100000;
+const SIZE = 100000;
-var cp = ch.spawn('python', ['-c', 'print ' + SIZE + ' * "C"'], {
+const cp = ch.spawn('python', ['-c', 'print ' + SIZE + ' * "C"'], {
stdio: 'inherit'
});