Skip to content

Commit

Permalink
test: remove assert message
Browse files Browse the repository at this point in the history
PR-URL: #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 MylesBorins committed Oct 17, 2017
1 parent 3e5e8cb commit 3996e8a
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 @@ -45,8 +45,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 3996e8a

Please sign in to comment.