| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 2a9ab8e commit 7615a0f
1 file changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -22,10 +22,10 @@ function grandparent() { | |||
| 22 | 22 | child.stdin.end(input); | |
| 23 | 23 | ||
| 24 | 24 | child.on('close', function(code, signal) { | |
| 25 | - assert.equal(code, 0); | ||
| 26 | - assert.equal(signal, null); | ||
| 25 | + assert.strictEqual(code, 0); | ||
| 26 | + assert.strictEqual(signal, null); | ||
| 27 | 27 | // cat on windows adds a \r\n at the end. | |
| 28 | - assert.equal(output.trim(), input.trim()); | ||
| 28 | + assert.strictEqual(output.trim(), input.trim()); | ||
| 29 | 29 | }); | |
| 30 | 30 | } | |
| 31 | 31 | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments