Skip to content

Commit d5e9801

Browse files
iliashkolyartargos
authored andcommitted
test: remove string literal from deepStrictEqual
PR-URL: #22742 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Richard Lau <[email protected]>
1 parent 649fcbb commit d5e9801

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ fs.createReadStream(pmmFileGz)
5555
})
5656
.on('data', (data) => pmmResultBuffers.push(data))
5757
.on('finish', common.mustCall(() => {
58-
assert.deepStrictEqual(Buffer.concat(pmmResultBuffers), pmmExpected,
59-
'result should match original random garbage');
58+
// Result should match original random garbage
59+
assert.deepStrictEqual(Buffer.concat(pmmResultBuffers), pmmExpected);
6060
}));
6161

6262
// test that the next gzip member can wrap around the input buffer boundary

0 commit comments

Comments
 (0)