Skip to content

Commit 633f0f6

Browse files
nik-blue-lavamonkpow
authored andcommitted
[adhoc] Update verbs test to use a non-deprecated attribute.
1 parent c379f12 commit 633f0f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/verbs.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ describe('http verbs', function () {
2323
.get('/get')
2424
.end(function (err, res) {
2525
if (err) { return done(err); }
26-
assert(/node-superagent/.test(res.body.headers['User-Agent']));
26+
assert(/httpbin.org/.test(res.body.headers['Host']));
2727
assert.equal(res.body.url, 'http://httpbin.org/get');
2828
done(err);
2929
});

0 commit comments

Comments
 (0)