Skip to content

Commit

Permalink
tests: fix test name
Browse files Browse the repository at this point in the history
  • Loading branch information
dougwilson committed May 31, 2021
1 parent 5a34477 commit d56b75b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ describe('forwarded(req)', function () {
assert.throws(forwarded.bind(null), /argument req.*required/)
})

it('should work with X-Forwarded-For header', function () {
it('should work without X-Forwarded-For header', function () {
var req = createReq('127.0.0.1')
assert.ok(deepEqual(forwarded(req), ['127.0.0.1']))
})
Expand Down

0 comments on commit d56b75b

Please sign in to comment.