Skip to content

Commit 582749e

Browse files
dpaulinoBridgeAR
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 28a5fd0 commit 582749e

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
@@ -45,7 +45,7 @@ const out = fs.createWriteStream(outputFile);
4545
inp.pipe(gunzip).pipe(out);
4646
out.on('close', common.mustCall(() => {
4747
const actual = fs.readFileSync(outputFile);
48-
assert.strictEqual(actual.length, expect.length, 'length should match');
48+
assert.strictEqual(actual.length, expect.length);
4949
for (let i = 0, l = actual.length; i < l; i++) {
5050
assert.strictEqual(actual[i], expect[i], `byte[${i}]`);
5151
}

0 commit comments

Comments
 (0)