Skip to content

Commit

Permalink
test: use print() function in both Python 2 and 3
Browse files Browse the repository at this point in the history
PR-URL: #29298
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Rich Trott <rtrott@gmail.com>
  • Loading branch information
cclauss authored and Trott committed Aug 27, 2019
1 parent fd964de commit b2cce43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/parallel/test-child-process-set-blocking.js
Original file line number Diff line number Diff line change
Expand Up @@ -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'
});

Expand Down

0 comments on commit b2cce43

Please sign in to comment.