Skip to content

Commit

Permalink
test: use smaller input file for test-zlib.js
Browse files Browse the repository at this point in the history
PR-URL: #17988
Fixes: #17986
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
  • Loading branch information
Trott authored and MylesBorins committed Feb 27, 2018
1 parent 22ddc43 commit 66a19cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/parallel/test-zlib.js
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ assert.doesNotThrow(() => {
}, 'windowsBits set to 8 should follow legacy zlib behavior');

{
const node = fs.createReadStream(process.execPath);
const node = fs.createReadStream(fixtures.path('person.jpg'));
const raw = [];
const reinflated = [];
node.on('data', (chunk) => raw.push(chunk));
Expand Down

0 comments on commit 66a19cf

Please sign in to comment.