Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
test: fix python print call in child process test
  • Loading branch information
wltsmrz committed Apr 24, 2020
commit d8978da64b2b71ef6676873fb682ba864fd795b5
2 changes: 1 addition & 1 deletion test/pummel/test-child-process-spawn-loop.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const N = 40;
let finished = false;

function doSpawn(i) {
const child = spawn('python', ['-c', `print ${SIZE} * "C"`]);
const child = spawn('python', ['-c', `print(${SIZE} * "C")`]);
let count = 0;

child.stdout.setEncoding('ascii');
Expand Down