Skip to content

Commit ae2bf0a

Browse files
daniel-pittmanFishrock123
authored andcommittedDec 5, 2016
test: Changed assert.equal to assert.strictEqual
Updated test-cluster-send-deadlock.js to change assert.equal to assert.strictEqual PR-URL: #9902 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
1 parent 1eb5817 commit ae2bf0a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ var net = require('net');
1010
if (cluster.isMaster) {
1111
var worker = 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)