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 94c6296 commit ba9aa46Copy full SHA for ba9aa46
test/parallel/test-zlib-from-gzip.js
@@ -45,7 +45,7 @@ const out = fs.createWriteStream(outputFile);
45
inp.pipe(gunzip).pipe(out);
46
out.on('close', common.mustCall(() => {
47
const actual = fs.readFileSync(outputFile);
48
- assert.strictEqual(actual.length, expect.length, 'length should match');
+ assert.strictEqual(actual.length, expect.length);
49
for (let i = 0, l = actual.length; i < l; i++) {
50
assert.strictEqual(actual[i], expect[i], `byte[${i}]`);
51
}
0 commit comments