Skip to content

Commit

Permalink
test: reversed arguments in strictqual to reflect documentation
Browse files Browse the repository at this point in the history
PR-URL: #23494
Reviewed-By: Colin Ihrig <[email protected]>
Reviewed-By: Gireesh Punathil <[email protected]>
Reviewed-By: James M Snell <[email protected]>
Reviewed-By: Trivikram Kamat <[email protected]>
Reviewed-By: Ruben Bridgewater <[email protected]>
  • Loading branch information
scabhi authored and MylesBorins committed Oct 30, 2018
1 parent f1fb2be commit e9f1746
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/known_issues/test-inspector-cluster-port-clash.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ function serialFork() {
if (code === 12) {
return assert.fail(`worker ${worker.id} failed to bind port`);
}
assert.strictEqual(0, code);
assert.strictEqual(code, 0);
}));
worker.on('disconnect', common.mustCall(res));
});
Expand Down

0 comments on commit e9f1746

Please sign in to comment.