summaryrefslogtreecommitdiff
path: root/test/parallel/test-stream-big-push.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-stream-big-push.js')
-rw-r--r--test/parallel/test-stream-big-push.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parallel/test-stream-big-push.js b/test/parallel/test-stream-big-push.js
index 2369fac09a..5eabd4837e 100644
--- a/test/parallel/test-stream-big-push.js
+++ b/test/parallel/test-stream-big-push.js
@@ -62,7 +62,7 @@ chunk = r.read();
assert.strictEqual(chunk, null);
r.once('readable', () => {
- // this time, we'll get *all* the remaining data, because
+ // This time, we'll get *all* the remaining data, because
// it's been added synchronously, as the read WOULD take
// us below the hwm, and so it triggered a _read() again,
// which synchronously added more, which we then return.