Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit ae2bf0a

Browse filesBrowse files
daniel-pittmanFishrock123
authored andcommitted
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
Copy full SHA for ae2bf0a

File tree

Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed
Open diff view settings
Collapse file

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

Copy file name to clipboardExpand all lines: test/parallel/test-cluster-send-deadlock.js
+1-1Lines 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
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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.