summaryrefslogtreecommitdiff
path: root/test/parallel/test-http-response-multiheaders.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-http-response-multiheaders.js')
-rw-r--r--test/parallel/test-http-response-multiheaders.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/parallel/test-http-response-multiheaders.js b/test/parallel/test-http-response-multiheaders.js
index f4c1fd4116..8f48dc2377 100644
--- a/test/parallel/test-http-response-multiheaders.js
+++ b/test/parallel/test-http-response-multiheaders.js
@@ -29,7 +29,7 @@ const norepeat = [
];
const server = http.createServer(function(req, res) {
- var num = req.headers['x-num'];
+ const num = req.headers['x-num'];
if (num === '1') {
for (const name of norepeat) {
res.setHeader(name, ['A', 'B']);
@@ -47,7 +47,7 @@ const server = http.createServer(function(req, res) {
});
server.listen(0, common.mustCall(function() {
- var count = 0;
+ let count = 0;
for (let n = 1; n <= 2; n++) {
// this runs twice, the first time, the server will use
// setHeader, the second time it uses writeHead. The