We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81f4fb2 commit 5510becCopy full SHA for 5510bec
test/parallel/test-child-process-stdio.js
@@ -60,8 +60,8 @@ const { spawn } = require('child_process');
60
}));
61
62
child.on('close', common.mustCall(function() {
63
- assert.strictEqual(true, output.length > 1);
64
- assert.strictEqual('\n', output[output.length - 1]);
+ assert.strictEqual(output.length > 1, true);
+ assert.strictEqual(output[output.length - 1], '\n');
65
66
}
67
0 commit comments