summaryrefslogtreecommitdiff
path: root/test/parallel/test-http-exceptions.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-http-exceptions.js')
-rw-r--r--test/parallel/test-http-exceptions.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parallel/test-http-exceptions.js b/test/parallel/test-http-exceptions.js
index 6b02a98242..0b6ac5bdc1 100644
--- a/test/parallel/test-http-exceptions.js
+++ b/test/parallel/test-http-exceptions.js
@@ -25,7 +25,7 @@ const http = require('http');
const server = http.createServer(function(req, res) {
intentionally_not_defined(); // eslint-disable-line no-undef
- res.writeHead(200, {'Content-Type': 'text/plain'});
+ res.writeHead(200, { 'Content-Type': 'text/plain' });
res.write('Thank you, come again.');
res.end();
});