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
Next Next commit
fixed assertion, reversed argument in strictqual to reflect documenta…
…tion
  • Loading branch information
scabhi committed Oct 12, 2018
commit 9a0a5c999d9ffbd98a8a84adca4fc5c0a2aa22ef
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