summaryrefslogtreecommitdiff
path: root/test/parallel/test-zlib.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-zlib.js')
-rw-r--r--test/parallel/test-zlib.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/parallel/test-zlib.js b/test/parallel/test-zlib.js
index 1852ae3393..509dcd2207 100644
--- a/test/parallel/test-zlib.js
+++ b/test/parallel/test-zlib.js
@@ -44,7 +44,7 @@ let trickle = [128, 1024, 1024 * 1024];
// several different chunk sizes
let chunkSize = [128, 1024, 1024 * 16, 1024 * 1024];
-// this is every possible value.
+// This is every possible value.
let level = [-1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9];
let windowBits = [8, 9, 10, 11, 12, 13, 14, 15];
let memLevel = [1, 2, 3, 4, 5, 6, 7, 8, 9];
@@ -74,7 +74,7 @@ testFiles.forEach(common.mustCall((file) => {
}, testFiles.length));
-// stream that saves everything
+// Stream that saves everything
class BufferStream extends stream.Stream {
constructor() {
super();
@@ -210,7 +210,7 @@ testKeys.forEach(common.mustCall((file) => {
}
}));
- // the magic happens here.
+ // The magic happens here.
ss.pipe(def).pipe(inf).pipe(buf);
ss.end(test);
}, zlibPairs.length));