Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions test/parallel/test-stream-push-strings.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,15 @@ class MyStream extends Readable {
case 0:
return this.push(null);
case 1:
return setTimeout(function() {
return setTimeout(() => {
this.push('last chunk');
}.bind(this), 100);
}, 100);
case 2:
return this.push('second to last chunk');
case 3:
return process.nextTick(function() {
return process.nextTick(() => {
this.push('first chunk');
}.bind(this));
});
default:
throw new Error('?');
}
Expand Down
4 changes: 2 additions & 2 deletions test/parallel/test-stream2-transform.js
Original file line number Diff line number Diff line change
Expand Up @@ -211,14 +211,14 @@ const Transform = require('_stream_transform');
if (!chunk)
chunk = '';
const s = chunk.toString();
setTimeout(function() {
setTimeout(() => {
this.state += s.charAt(0);
if (this.state.length === 3) {
pt.push(Buffer.from(this.state));
this.state = '';
}
cb();
}.bind(this), 10);
}, 10);
};

pt._flush = function(cb) {
Expand Down