Skip to content

Commit

Permalink
test: fix error in test-cluster-worker-death.js
Browse files Browse the repository at this point in the history
Replaced calls to assert.equal with assert.strictEqual in order
to fix the following error:
"Please use assert.strictEqual() instead of assert.strictEqual()"

PR-URL: #9981
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
  • Loading branch information
Bruce Lai authored and MylesBorins committed Dec 21, 2016
1 parent 2edfeb9 commit 39fbab9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/parallel/test-cluster-worker-death.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ if (!cluster.isMaster) {
} else {
var worker = cluster.fork();
worker.on('exit', common.mustCall(function(exitCode, signalCode) {
assert.equal(exitCode, 42);
assert.equal(signalCode, null);
assert.strictEqual(exitCode, 42);
assert.strictEqual(signalCode, null);
}));
cluster.on('exit', common.mustCall(function(worker_) {
assert.equal(worker_, worker);
assert.strictEqual(worker_, worker);
}));
}

0 comments on commit 39fbab9

Please sign in to comment.