Skip to content

Commit

Permalink
Undo updates
Browse files Browse the repository at this point in the history
  • Loading branch information
phogel committed May 30, 2018
1 parent dd2fe8f commit 7d9e220
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/node/http.server.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ describe('nodejs http server', () => {

describe('Blacklist', () => {

it('should return 200 without host', function (done) {
it('should return 403 without host', function (done) {
request(app)
.get('/demos/complete-integration-site-a.html')
.end(function (error, response) {
expect(response.statusCode).to.equal(200);
expect(response.statusCode).to.equal(403);
done();
}, 1000);
});
Expand Down

0 comments on commit 7d9e220

Please sign in to comment.