From 1c00fad4e7e47af2887a5570656aa6993c68a160 Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Thu, 4 Jan 2018 17:03:44 -0800 Subject: [PATCH] test: use smaller input file for test-zlib.js Fixes: https://github.com/nodejs/node/issues/17986 --- test/parallel/test-zlib.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/parallel/test-zlib.js b/test/parallel/test-zlib.js index b2201fca4c9aae..1f6965d1247b8e 100644 --- a/test/parallel/test-zlib.js +++ b/test/parallel/test-zlib.js @@ -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));