summaryrefslogtreecommitdiff
path: root/test/parallel/test-zlib.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-zlib.js')
-rw-r--r--test/parallel/test-zlib.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parallel/test-zlib.js b/test/parallel/test-zlib.js
index b2201fca4c..1f6965d124 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));