| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent effa15e commit a36389e
1 file changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -18,13 +18,13 @@ if (cluster.isMaster) { | |||
| 18 | 18 | // Master opens and binds the socket and shares it with the worker. | |
| 19 | 19 | cluster.schedulingPolicy = cluster.SCHED_NONE; | |
| 20 | 20 | cluster.fork().on('exit', common.mustCall(function(exitCode) { | |
| 21 | - assert.equal(exitCode, 0); | ||
| 21 | + assert.strictEqual(exitCode, 0); | ||
| 22 | 22 | })); | |
| 23 | 23 | } else { | |
| 24 | 24 | var s = net.createServer(common.fail); | |
| 25 | 25 | s.listen(42, common.fail.bind(null, 'listen should have failed')); | |
| 26 | 26 | s.on('error', common.mustCall(function(err) { | |
| 27 | - assert.equal(err.code, 'EACCES'); | ||
| 27 | + assert.strictEqual(err.code, 'EACCES'); | ||
| 28 | 28 | process.disconnect(); | |
| 29 | 29 | })); | |
| 30 | 30 | } | |
| Back | FazBrowse Home | New Git URL |
0 commit comments