summaryrefslogtreecommitdiff
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.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parallel/test-child-process-set-blocking.js b/test/parallel/test-child-process-set-blocking.js
index 51a079ef5f..b78b71e545 100644
--- a/test/parallel/test-child-process-set-blocking.js
+++ b/test/parallel/test-child-process-set-blocking.js
@@ -26,7 +26,7 @@ const ch = require('child_process');
const SIZE = 100000;
-const cp = ch.spawn('python', ['-c', `print ${SIZE} * "C"`], {
+const cp = ch.spawn('python', ['-c', `print(${SIZE} * "C")`], {
stdio: 'inherit'
});