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>
This commit is contained in:
cjihrig 2017-02-07 12:21:25 -05:00
parent 89f8ef2bf4
commit c239581e64

View File

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