Skip to content

Commit

Permalink
421
Browse files Browse the repository at this point in the history
  • Loading branch information
alxndrsn committed Dec 2, 2024
1 parent 5bcc786 commit 2792708
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test-nginx.js
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ describe('nginx config', () => {
console.log('res.body:', res.body);

// then
assert.equal(res.status, 420);
assert.equal(res.status, 421);
});

it('should reject HTTPS requests with incorrect host header supplied', async () => {
Expand All @@ -129,7 +129,7 @@ describe('nginx config', () => {
console.log('res.body:', res.body);

// then
assert.equal(res.status, 422);
assert.equal(res.status, 421);
});
});

Expand Down

0 comments on commit 2792708

Please sign in to comment.