Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
test: remove assert message
  • Loading branch information
johenry committed Oct 7, 2017
commit f02206745d1555d9118de63ceba471d774dcb565
7 changes: 2 additions & 5 deletions test/pummel/test-stream-pipe-multi.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,8 @@ FakeStream.prototype.close = function() {

// expect all streams to close properly.
process.on('exit', function() {
wclosed = rclosed = 0;
assert.strictEqual(cnt, wclosed, `Expected ${cnt} writable streams closed ` +
`but only saw ${wclosed}`);
assert.strictEqual(cnt, rclosed, `Expected ${cnt} readable streams closed ` +
`but only saw ${rclosed}`);
assert.strictEqual(cnt, wclosed);
assert.strictEqual(cnt, rclosed);
});

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