summaryrefslogtreecommitdiff
path: root/test/parallel/test-http.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-http.js')
-rw-r--r--test/parallel/test-http.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/parallel/test-http.js b/test/parallel/test-http.js
index f755bca8bc..a80a2b8856 100644
--- a/test/parallel/test-http.js
+++ b/test/parallel/test-http.js
@@ -4,10 +4,10 @@ const assert = require('assert');
const http = require('http');
const url = require('url');
-var responses_sent = 0;
-var responses_recvd = 0;
-var body0 = '';
-var body1 = '';
+let responses_sent = 0;
+let responses_recvd = 0;
+let body0 = '';
+let body1 = '';
const server = http.Server(function(req, res) {
if (responses_sent === 0) {