| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -23,7 +23,7 @@ const out = fs.createWriteStream(outputFile); | |||
| 23 | 23 | inp.pipe(gunzip).pipe(out); | |
| 24 | 24 | out.on('close', common.mustCall(() => { | |
| 25 | 25 | const actual = fs.readFileSync(outputFile); | |
| 26 | - assert.strictEqual(actual.length, expect.length, 'length should match'); | ||
| 26 | + assert.strictEqual(actual.length, expect.length); | ||
| 27 | 27 | for (let i = 0, l = actual.length; i < l; i++) { | |
| 28 | 28 | assert.strictEqual(actual[i], expect[i], `byte[${i}]`); | |
| 29 | 29 | } | |
| Back | FazBrowse Home | New Git URL |
0 commit comments