Skip to content

Commit 3996e8a

Browse files
johenryMylesBorins
authored andcommitted
test: remove assert message
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>
1 parent 3e5e8cb commit 3996e8a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/pummel/test-stream-pipe-multi.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ FakeStream.prototype.close = function() {
4545

4646
// expect all streams to close properly.
4747
process.on('exit', function() {
48-
assert.strictEqual(cnt, wclosed, 'writable streams closed');
49-
assert.strictEqual(cnt, rclosed, 'readable streams closed');
48+
assert.strictEqual(cnt, wclosed);
49+
assert.strictEqual(cnt, rclosed);
5050
});
5151

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

0 commit comments

Comments
 (0)