Skip to content

Commit a686f9c

Browse files
dpaulinoMylesBorins
authored andcommitted
test: removed string from assert message arg
PR-URL: #15954 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: Tobias Nießen <[email protected]>
1 parent 97cf4f1 commit a686f9c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/parallel/test-zlib-from-gzip.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const out = fs.createWriteStream(outputFile);
2323
inp.pipe(gunzip).pipe(out);
2424
out.on('close', common.mustCall(() => {
2525
const actual = fs.readFileSync(outputFile);
26-
assert.strictEqual(actual.length, expect.length, 'length should match');
26+
assert.strictEqual(actual.length, expect.length);
2727
for (let i = 0, l = actual.length; i < l; i++) {
2828
assert.strictEqual(actual[i], expect[i], `byte[${i}]`);
2929
}

0 commit comments

Comments
 (0)