Skip to content

Commit

Permalink
test: swap actual&optional params
Browse files Browse the repository at this point in the history
PR-URL: nodejs#24426
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Reviewed-By: Ujjwal Sharma <usharma1998@gmail.com>
  • Loading branch information
m-nikhil authored and Trott committed Nov 18, 2018
1 parent 413fcad commit 1b75b81
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/pummel/test-stream-pipe-multi.js
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 1b75b81

Please sign in to comment.