Skip to content

Commit

Permalink
test: remove assert message
Browse files Browse the repository at this point in the history
PR-URL: nodejs/node#15997
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
  • Loading branch information
johenry authored and addaleax committed Oct 11, 2017
1 parent 3d42838 commit 410060b
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, 'writable streams closed');
assert.strictEqual(cnt, rclosed, 'readable streams closed');
assert.strictEqual(cnt, wclosed);
assert.strictEqual(cnt, rclosed);
});

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

0 comments on commit 410060b

Please sign in to comment.