Skip to content

Commit 72fb05d

Browse files
Aileenaddaleax
authored andcommitted
test: change assert.equal to assert.strictEqual
PR-URL: #9946 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Anna Henningsen <[email protected]>
1 parent dac757e commit 72fb05d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎test/parallel/test-cluster-send-handle-twice.js‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ if (cluster.isMaster){
1414
for(vari=0;i<workers.toStart;++i){
1515
varworker=cluster.fork();
1616
worker.on('exit',function(code,signal){
17-
assert.equal(code,0,'Worker exited with an error code');
17+
assert.strictEqual(code,0,'Worker exited with an error code');
1818
assert(!signal,'Worker exited by a signal');
1919
});
2020
}

0 commit comments

Comments
(0)