We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4291c43 commit 09a6644Copy full SHA for 09a6644
test/parallel/test-cluster-eaccess.js
@@ -47,7 +47,7 @@ if (cluster.isMaster && process.argv.length !== 3) {
47
worker.on('message', common.mustCall(function(err) {
48
// disconnect first, so that we will not leave zombies
49
worker.disconnect();
50
- assert.strictEqual('EADDRINUSE', err.code);
+ assert.strictEqual(err.code, 'EADDRINUSE');
51
}));
52
} else if (process.argv.length !== 3) {
53
// cluster.worker
0 commit comments