summaryrefslogtreecommitdiff
path: root/test/parallel/test-http-zero-length-write.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-http-zero-length-write.js')
-rw-r--r--test/parallel/test-http-zero-length-write.js26
1 files changed, 13 insertions, 13 deletions
diff --git a/test/parallel/test-http-zero-length-write.js b/test/parallel/test-http-zero-length-write.js
index b928aaeb34..63446e4604 100644
--- a/test/parallel/test-http-zero-length-write.js
+++ b/test/parallel/test-http-zero-length-write.js
@@ -1,18 +1,18 @@
'use strict';
require('../common');
-var assert = require('assert');
+const assert = require('assert');
-var http = require('http');
+const http = require('http');
-var Stream = require('stream');
+const Stream = require('stream');
function getSrc() {
// An old-style readable stream.
// The Readable class prevents this behavior.
- var src = new Stream();
+ const src = new Stream();
// start out paused, just so we don't miss anything yet.
- var paused = false;
+ let paused = false;
src.pause = function() {
paused = true;
};
@@ -20,12 +20,12 @@ function getSrc() {
paused = false;
};
- var chunks = [ '', 'asdf', '', 'foo', '', 'bar', '' ];
- var interval = setInterval(function() {
+ const chunks = [ '', 'asdf', '', 'foo', '', 'bar', '' ];
+ const interval = setInterval(function() {
if (paused)
return;
- var chunk = chunks.shift();
+ const chunk = chunks.shift();
if (chunk !== undefined) {
src.emit('data', chunk);
} else {
@@ -38,10 +38,10 @@ function getSrc() {
}
-var expect = 'asdffoobar';
+const expect = 'asdffoobar';
-var server = http.createServer(function(req, res) {
- var actual = '';
+const server = http.createServer(function(req, res) {
+ let actual = '';
req.setEncoding('utf8');
req.on('data', function(c) {
actual += c;
@@ -54,8 +54,8 @@ var server = http.createServer(function(req, res) {
});
server.listen(0, function() {
- var req = http.request({ port: this.address().port, method: 'POST' });
- var actual = '';
+ const req = http.request({ port: this.address().port, method: 'POST' });
+ let actual = '';
req.on('response', function(res) {
res.setEncoding('utf8');
res.on('data', function(c) {