We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c379f12 commit 633f0f6Copy full SHA for 633f0f6
test/verbs.js
@@ -23,7 +23,7 @@ describe('http verbs', function () {
23
.get('/get')
24
.end(function (err, res) {
25
if (err) { return done(err); }
26
- assert(/node-superagent/.test(res.body.headers['User-Agent']));
+ assert(/httpbin.org/.test(res.body.headers['Host']));
27
assert.equal(res.body.url, 'http://httpbin.org/get');
28
done(err);
29
});
0 commit comments