summaryrefslogtreecommitdiff
path: root/test/parallel/test-http-chunked.js
diff options
context:
space:
mode:
authorSebastiaan Deckers <sebdeckers83@gmail.com>2017-07-10 20:55:21 -0400
committerRefael Ackermann <refack@gmail.com>2017-07-21 15:13:47 -0400
commitbb294059040def8e8c0b1719cc17f6537ab5cb39 (patch)
treeacc6b7bcf88da8e6078fa5ab91f6718289f32bbf /test/parallel/test-http-chunked.js
parent4f875222445b07016a8294fa5a5bf7418c735489 (diff)
downloadnode-new-bb294059040def8e8c0b1719cc17f6537ab5cb39.tar.gz
lib,src: fix consistent spacing inside braces
PR-URL: https://github.com/nodejs/node/pull/14162 Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Timothy Gu <timothygu99@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'test/parallel/test-http-chunked.js')
-rw-r--r--test/parallel/test-http-chunked.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parallel/test-http-chunked.js b/test/parallel/test-http-chunked.js
index 133c1d8477..d587141c6d 100644
--- a/test/parallel/test-http-chunked.js
+++ b/test/parallel/test-http-chunked.js
@@ -35,7 +35,7 @@ const UTF8_STRING = '南越国是前203年至前111年存在于岭南地区的
'有效的改善了岭南地区落后的政治、经济现状。';
const server = http.createServer(function(req, res) {
- res.writeHead(200, {'Content-Type': 'text/plain; charset=utf8'});
+ res.writeHead(200, { 'Content-Type': 'text/plain; charset=utf8' });
res.end(UTF8_STRING, 'utf8');
});
server.listen(0, function() {