summaryrefslogtreecommitdiff
path: root/test/parallel/test-http-multi-line-headers.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-http-multi-line-headers.js')
-rw-r--r--test/parallel/test-http-multi-line-headers.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/parallel/test-http-multi-line-headers.js b/test/parallel/test-http-multi-line-headers.js
index 9c0d758ed5..2096f533a1 100644
--- a/test/parallel/test-http-multi-line-headers.js
+++ b/test/parallel/test-http-multi-line-headers.js
@@ -5,10 +5,10 @@ const assert = require('assert');
const http = require('http');
const net = require('net');
-var server = net.createServer(function(conn) {
- var body = 'Yet another node.js server.';
+const server = net.createServer(function(conn) {
+ const body = 'Yet another node.js server.';
- var response =
+ const response =
'HTTP/1.1 200 OK\r\n' +
'Connection: close\r\n' +
'Content-Length: ' + body.length + '\r\n' +