Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
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: swap assert.strictEqual args to actual, expected
PR-URL: #23459
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
  • Loading branch information
epeden authored and Trott committed Oct 13, 2018
commit 767d4daeedfa1f336a9c652e13c154a55dcf92cd
2 changes: 1 addition & 1 deletion test/parallel/test-cluster-eaccess.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ if (cluster.isMaster && process.argv.length !== 3) {
worker.on('message', common.mustCall(function(err) {
// disconnect first, so that we will not leave zombies
worker.disconnect();
assert.strictEqual('EADDRINUSE', err.code);
assert.strictEqual(err.code, 'EADDRINUSE');
}));
} else if (process.argv.length !== 3) {
// cluster.worker
Expand Down