Skip to content

Commit

Permalink
typos in middleware test comments
Browse files Browse the repository at this point in the history
  • Loading branch information
blowery committed Jul 17, 2018
1 parent c85789a commit 72ef256
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/middleware-test.js
Expand Up @@ -184,8 +184,8 @@ describe("middleware", function() {
});
});
// Express HTTP/2 support is in progress: https://github.com/expressjs/express/pull/3390
it("should not contain `conntection: keep-alive` header for HTTP/2 request");
it("should contain `conntection: keep-alive` header for HTTP/1 request", function(done) {
it("should not contain `connection: keep-alive` header for HTTP/2 request");
it("should contain `connection: keep-alive` header for HTTP/1 request", function(done) {
request('/__webpack_hmr')
.end(function(err, res) {
if (err) return done(err);
Expand Down

0 comments on commit 72ef256

Please sign in to comment.