aboutsummaryrefslogtreecommitdiff
path: root/test/parallel/test-stream2-set-encoding.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-stream2-set-encoding.js')
-rw-r--r--test/parallel/test-stream2-set-encoding.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/parallel/test-stream2-set-encoding.js b/test/parallel/test-stream2-set-encoding.js
index f60e8df9e1..0095fa544d 100644
--- a/test/parallel/test-stream2-set-encoding.js
+++ b/test/parallel/test-stream2-set-encoding.js
@@ -34,14 +34,14 @@ class TestReader extends R {
_read(n) {
setTimeout(() => {
if (this.pos >= this.len) {
- // double push(null) to test eos handling
+ // Double push(null) to test eos handling
this.push(null);
return this.push(null);
}
n = Math.min(n, this.len - this.pos);
if (n <= 0) {
- // double push(null) to test eos handling
+ // Double push(null) to test eos handling
this.push(null);
return this.push(null);
}