Browse Source

test: fix incorrect indentation

Indentation is off in test-http-server-unconsume-consume.js.
The linter isn't complaining, but it probably should be.

PR-URL: https://github.com/nodejs/node/pull/11219
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
v6
cjihrig 8 years ago
parent
commit
c239581e64
  1. 4
      test/parallel/test-http-server-unconsume-consume.js

4
test/parallel/test-http-server-unconsume-consume.js

@ -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();
}));

Loading…
Cancel
Save