Skip to content
This repository has been archived by the owner on Dec 30, 2021. It is now read-only.

Commit

Permalink
chore: ensure piped body is exactly the same (request#3064)
Browse files Browse the repository at this point in the history
  • Loading branch information
reconbot committed Nov 24, 2018
1 parent 81b171b commit 167065e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test-pipes.js
Expand Up @@ -295,7 +295,7 @@ tape('one-line proxy', function (t) {
}, function (err, res, body) {
t.equal(err, null)
t.equal(res.headers['x-oneline-proxy'], 'yup')
t.notEqual(body, null)
t.equal(body, fs.readFileSync(path.join(__dirname, 'googledoodle.jpg')).toString())
t.end()
})
})
Expand Down

0 comments on commit 167065e

Please sign in to comment.