summaryrefslogtreecommitdiff
path: root/test/parallel/test-http-client-get-url.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-http-client-get-url.js')
-rw-r--r--test/parallel/test-http-client-get-url.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parallel/test-http-client-get-url.js b/test/parallel/test-http-client-get-url.js
index 53ccd66182..7f6bfb8eca 100644
--- a/test/parallel/test-http-client-get-url.js
+++ b/test/parallel/test-http-client-get-url.js
@@ -30,7 +30,7 @@ const testPath = '/foo?bar';
const server = http.createServer(common.mustCall((req, res) => {
assert.strictEqual('GET', req.method);
assert.strictEqual(testPath, req.url);
- res.writeHead(200, {'Content-Type': 'text/plain'});
+ res.writeHead(200, { 'Content-Type': 'text/plain' });
res.write('hello\n');
res.end();
}, 3));