Skip to content

Commit

Permalink
test: swap actual&optional params
Browse files Browse the repository at this point in the history
PR-URL: #24426
Reviewed-By: Michaël Zasso <[email protected]>
Reviewed-By: Colin Ihrig <[email protected]>
Reviewed-By: Gireesh Punathil <[email protected]>
Reviewed-By: Trivikram Kamat <[email protected]>
Reviewed-By: Ujjwal Sharma <[email protected]>
  • Loading branch information
m-nikhil authored and rvagg committed Nov 28, 2018
1 parent 7bc2011 commit 658df6b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/pummel/test-stream-pipe-multi.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ FakeStream.prototype.close = function() {

// expect all streams to close properly.
process.on('exit', function() {
assert.strictEqual(cnt, wclosed);
assert.strictEqual(cnt, rclosed);
assert.strictEqual(wclosed, cnt);
assert.strictEqual(rclosed, cnt);
});

for (let i = 0; i < chunkSize; i++) {
Expand Down

0 comments on commit 658df6b

Please sign in to comment.