diff options
Diffstat (limited to 'test/parallel/test-pipe-file-to-http.js')
-rw-r--r-- | test/parallel/test-pipe-file-to-http.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parallel/test-pipe-file-to-http.js b/test/parallel/test-pipe-file-to-http.js index ccb1c1c612..244dcd1a99 100644 --- a/test/parallel/test-pipe-file-to-http.js +++ b/test/parallel/test-pipe-file-to-http.js @@ -49,7 +49,7 @@ const server = http.createServer(function(req, res) { if (timeoutId) { clearTimeout(timeoutId); } - res.writeHead(200, {'Content-Type': 'text/plain'}); + res.writeHead(200, { 'Content-Type': 'text/plain' }); res.end(); }); }); |