diff --git a/tests/test-pipes.js b/tests/test-pipes.js index adeaa5006..dab7cb311 100644 --- a/tests/test-pipes.js +++ b/tests/test-pipes.js @@ -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() }) })