We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 705202d commit fcab2c5Copy full SHA for fcab2c5
test/parallel/test-zlib-from-gzip.js
@@ -23,7 +23,7 @@ const out = fs.createWriteStream(outputFile);
23
inp.pipe(gunzip).pipe(out);
24
out.on('close', common.mustCall(() => {
25
const actual = fs.readFileSync(outputFile);
26
- assert.strictEqual(actual.length, expect.length, 'length should match');
+ assert.strictEqual(actual.length, expect.length);
27
for (let i = 0, l = actual.length; i < l; i++) {
28
assert.strictEqual(actual[i], expect[i], `byte[${i}]`);
29
}
0 commit comments