test: remove string literal from deepStrictEqual by iliashkolyar · Pull Request #22742 · nodejs/node
Expand Up
@@ -55,8 +55,8 @@ fs.createReadStream(pmmFileGz)
})
.on('data', (data) => pmmResultBuffers.push(data))
.on('finish', common.mustCall(() => {
assert.deepStrictEqual(Buffer.concat(pmmResultBuffers), pmmExpected,
'result should match original random garbage');
// Result should match original random garbage
assert.deepStrictEqual(Buffer.concat(pmmResultBuffers), pmmExpected);
}));
// test that the next gzip member can wrap around the input buffer boundary Expand Down
// test that the next gzip member can wrap around the input buffer boundary Expand Down