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));