Skip to content

Commit 46bbabe

Browse files
stefanjudisitaloacasas
authored andcommitted
test: improve test-stream2-large-read-stall
* use const instead of var * use assert.strictEqual instead of assert.equal * use common.mustCall instead of process.on( 'exit', fn ) PR-URL: #10725 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Italo A. Casas <[email protected]>
1 parent 7f04377 commit 46bbabe

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

test/parallel/test-stream2-large-read-stall.js

+3-5
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,9 @@ r.on('readable', function() {
3333
rs.length);
3434
});
3535

36-
r.on('end', common.mustCall(function() {}));
36+
r.on('end', common.mustCall(function() {
37+
assert.strictEqual(pushes, PUSHCOUNT + 1);
38+
}));
3739

3840
let pushes = 0;
3941
function push() {
@@ -49,7 +51,3 @@ function push() {
4951
if (r.push(Buffer.allocUnsafe(PUSHSIZE)))
5052
setTimeout(push, 1);
5153
}
52-
53-
process.on('exit', function() {
54-
assert.strictEqual(pushes, PUSHCOUNT + 1);
55-
});

0 commit comments

Comments
 (0)