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 <[email protected]>
Reviewed-By: Gibson Fahnestock <[email protected]>
Reviewed-By: James M Snell <[email protected]>
  • Loading branch information
johenry authored and MylesBorins committed Oct 11, 2017
1 parent e48c8b3 commit 50cae5c
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

1 comment on commit 50cae5c

@MylesBorins
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

the slash at the end of the URL breaks branch-diff

/cc @rvagg

Please sign in to comment.