| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent b5d8756 commit 6a485da
1 file changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -212,7 +212,7 @@ if (process.argv[2] === 'child') { | |||
| 212 | 212 | tests[testIndex](); | |
| 213 | 213 | ||
| 214 | 214 | process.on('exit', function onExit() { | |
| 215 | - assert.equal(errorHandlerCalled, true); | ||
| 215 | + assert.strictEqual(errorHandlerCalled, true); | ||
| 216 | 216 | }); | |
| 217 | 217 | } else { | |
| 218 | 218 | ||
@@ -233,7 +233,7 @@ if (process.argv[2] === 'child') { | |||
| 233 | 233 | var child = child_process.exec(testCmd); | |
| 234 | 234 | ||
| 235 | 235 | child.on('exit', function onExit(code, signal) { | |
| 236 | - assert.equal(code, 0, 'Test at index ' + testIndex + | ||
| 236 | + assert.strictEqual(code, 0, 'Test at index ' + testIndex + | ||
| 237 | 237 | ' should have exited with exit code 0 but instead exited with code ' + | |
| 238 | 238 | code + ' and signal ' + signal); | |
| 239 | 239 | }); | |
| Back | FazBrowse Home | New Git URL |
0 commit comments