| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent dda777b commit fb9a0ad
1 file changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -9,8 +9,8 @@ cat.stdin.write('hello'); | |||
| 9 | 9 | cat.stdin.write(' '); | |
| 10 | 10 | cat.stdin.write('world'); | |
| 11 | 11 | ||
| 12 | - assert.ok(cat.stdin.writable); | ||
| 13 | - assert.ok(!cat.stdin.readable); | ||
| 12 | + assert.strictEqual(true, cat.stdin.writable); | ||
| 13 | + assert.strictEqual(false, cat.stdin.readable); | ||
| 14 | 14 | ||
| 15 | 15 | cat.stdin.end(); | |
| 16 | 16 | ||
@@ -51,8 +51,8 @@ process.on('exit', function() { | |||
| 51 | 51 | assert.equal(0, exitStatus); | |
| 52 | 52 | assert(closed); | |
| 53 | 53 | if (common.isWindows) { | |
| 54 | - assert.equal('hello world\r\n', response); | ||
| 54 | + assert.strictEqual('hello world\r\n', response); | ||
| 55 | 55 | } else { | |
| 56 | - assert.equal('hello world', response); | ||
| 56 | + assert.strictEqual('hello world', response); | ||
| 57 | 57 | } | |
| 58 | 58 | }); | |
| Back | FazBrowse Home | New Git URL |
0 commit comments