summaryrefslogtreecommitdiff
path: root/test/parallel/test-http-client-pipe-end.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-http-client-pipe-end.js')
-rw-r--r--test/parallel/test-http-client-pipe-end.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/parallel/test-http-client-pipe-end.js b/test/parallel/test-http-client-pipe-end.js
index 04f308e76d..d4ccba8d55 100644
--- a/test/parallel/test-http-client-pipe-end.js
+++ b/test/parallel/test-http-client-pipe-end.js
@@ -4,7 +4,7 @@
const common = require('../common');
const http = require('http');
-var server = http.createServer(function(req, res) {
+const server = http.createServer(function(req, res) {
req.resume();
req.once('end', function() {
res.writeHead(200);
@@ -16,7 +16,7 @@ var server = http.createServer(function(req, res) {
common.refreshTmpDir();
server.listen(common.PIPE, function() {
- var req = http.request({
+ const req = http.request({
socketPath: common.PIPE,
headers: {'Content-Length': '1'},
method: 'POST',