| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 3b67001 commit f301df4
1 file changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -23,6 +23,6 @@ proc.stdin.write('require("path");\n'); | |||
| 23 | 23 | proc.stdin.write('process.exit(42);\n'); | |
| 24 | 24 | ||
| 25 | 25 | proc.once('exit', common.mustCall(function(exitCode, signalCode) { | |
| 26 | - assert.equal(exitCode, 42); | ||
| 27 | - assert.equal(signalCode, null); | ||
| 26 | + assert.strictEqual(exitCode, 42); | ||
| 27 | + assert.strictEqual(signalCode, null); | ||
| 28 | 28 | })); | |
| Back | FazBrowse Home | New Git URL |
0 commit comments