Skip to content

Commit 25a5072

Browse files
test: Changed assert.equal to assert.strictEqual
Updated test-cluster-send-deadlock.js to change assert.equal to assert.strictEqual
1 parent 8264a22 commit 25a5072

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎test/parallel/test-cluster-send-deadlock.js‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ var net = require('net');
1010
if(cluster.isMaster){
1111
varworker=cluster.fork();
1212
worker.on('exit',function(code,signal){
13-
assert.equal(code,0,'Worker exited with an error code');
13+
assert.strictEqual(code,0,'Worker exited with an error code');
1414
assert(!signal,'Worker exited by a signal');
1515
server.close();
1616
});

0 commit comments

Comments
(0)