Skip to content

Commit

Permalink
test: fix incorrect indentation
Browse files Browse the repository at this point in the history
Indentation is off in test-http-server-unconsume-consume.js.
The linter isn't complaining, but it probably should be.

PR-URL: nodejs#11219
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
  • Loading branch information
cjihrig authored and krydos committed Feb 25, 2017
1 parent 77b1109 commit 7523066
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/parallel/test-http-server-unconsume-consume.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ testServer.on('connect', common.mustCall((req, socket, head) => {
}));
testServer.listen(0, common.mustCall(() => {
http.request({
port: testServer.address().port,
method: 'CONNECT'
port: testServer.address().port,
method: 'CONNECT'
}, (res) => {}).end();
}));

0 comments on commit 7523066

Please sign in to comment.