| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -125,15 +125,15 @@ if (process.argv[2] === 'child') { | |||
| 125 | 125 | } else { | |
| 126 | 126 | // By default, uncaught exceptions make node exit with an exit | |
| 127 | 127 | // code of 7. | |
| 128 | - assert.equal(exitCode, 7); | ||
| 129 | - assert.equal(signal, null); | ||
| 128 | + assert.strictEqual(exitCode, 7); | ||
| 129 | + assert.strictEqual(signal, null); | ||
| 130 | 130 | } | |
| 131 | 131 | } else { | |
| 132 | 132 | // If the top-level domain's error handler does not throw, | |
| 133 | 133 | // the process must exit gracefully, whether or not | |
| 134 | 134 | // --abort_on_uncaught_exception was passed on the command line | |
| 135 | - assert.equal(exitCode, 0); | ||
| 136 | - assert.equal(signal, null); | ||
| 135 | + assert.strictEqual(exitCode, 0); | ||
| 136 | + assert.strictEqual(signal, null); | ||
| 137 | 137 | } | |
| 138 | 138 | }); | |
| 139 | 139 | } | |
| Back | FazBrowse Home | New Git URL |
0 commit comments