We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a41aa1 commit 1ff9a49Copy full SHA for 1ff9a49
test/pummel/test-child-process-spawn-loop.js
@@ -44,7 +44,7 @@ function doSpawn(i) {
44
45
child.on('close', () => {
46
// + 1 for \n or + 2 for \r\n on Windows
47
- assert.strictEqual(SIZE + (common.isWindows ? 2 : 1), count);
+ assert.strictEqual(count, SIZE + (common.isWindows ? 2 : 1));
48
if (i < N) {
49
doSpawn(i + 1);
50
} else {
0 commit comments