Skip to content

Commit 2828147

Browse files
committed
update comments
1 parent 58011f6 commit 2828147

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

test/parallel/test-whatwg-webstreams-internal-pipe.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const {
2929
JSStream,
3030
} = internalBinding('js_stream');
3131

32-
// Test 1: kStreamBase marker is attached to ReadableStream
32+
// kStreamBase marker is attached to ReadableStream
3333
{
3434
const stream = new JSStream();
3535
const readable = newReadableStreamFromStreamBase(stream);
@@ -40,7 +40,7 @@ const {
4040
stream.emitEOF();
4141
}
4242

43-
// Test 2: kStreamBase marker is attached to WritableStream
43+
// kStreamBase marker is attached to WritableStream
4444
{
4545
const stream = new JSStream();
4646
stream.onwrite = common.mustNotCall();
@@ -54,7 +54,7 @@ const {
5454
writable.close();
5555
}
5656

57-
// Test 3: Regular JS streams don't have kStreamBase
57+
// Regular JS streams don't have kStreamBase
5858
{
5959
const { ReadableStream, WritableStream } = require('stream/web');
6060

@@ -76,7 +76,7 @@ const {
7676
rs.pipeTo(ws).then(common.mustCall());
7777
}
7878

79-
// Test 4: Mixed streams (one internal, one JS) use standard path
79+
// Mixed streams (one internal, one JS) use standard path
8080
{
8181
const stream = new JSStream();
8282
stream.onshutdown = (req) => req.oncomplete();
@@ -104,7 +104,7 @@ const {
104104
}));
105105
}
106106

107-
// Test 5: Verify kStreamBase is the correct symbol from util
107+
// Verify kStreamBase is the correct symbol from util
108108
{
109109
const {
110110
kStreamBase: kStreamBase2,

0 commit comments

Comments
 (0)