Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
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 133c1d84779..d587141c6df 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() {