Skip to content

Commit b9d63ab

Browse files
BethGriggstniessen
authored andcommitted
test: remove erroneous assert message from test
Removes the incorrect 'exit successfully' message from test when the exit code is 0. PR-URL: #14918 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Rich Trott <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Tobias Nießen <[email protected]> Reviewed-By: Refael Ackermann <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
1 parent 4cff2cc commit b9d63ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/parallel/test-process-external-stdio-close-spawn.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ if (process.argv[2] === 'child') {
2222
});
2323

2424
child.on('close', common.mustCall((exitCode, signal) => {
25-
assert.strictEqual(exitCode, 0, 'exit successfully');
25+
assert.strictEqual(exitCode, 0);
2626
assert.strictEqual(signal, null);
2727
}));
2828

0 commit comments

Comments
 (0)