Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
test: reversed arguments in strictqual to reflect documentation
  • Loading branch information
scabhi committed Oct 12, 2018
commit bdb957dc8b1c1068779d59f12470951caf8673a2
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