Skip to content

Commit

Permalink
test: use python3 instead of python
Browse files Browse the repository at this point in the history
On some platforms, like macOS, python is no longer available by default.
  • Loading branch information
lpinca committed Sep 6, 2022
1 parent 0917626 commit 77878d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/parallel/test-child-process-set-blocking.js
Expand Up @@ -25,7 +25,7 @@ const assert = require('assert');
const ch = require('child_process');

const SIZE = 100000;
const python = process.env.PYTHON || 'python';
const python = process.env.PYTHON || 'python3';

const cp = ch.spawn(python, ['-c', `print(${SIZE} * "C")`], {
stdio: 'inherit'
Expand Down

0 comments on commit 77878d7

Please sign in to comment.