Skip to content

Commit 50cae5c

Browse files
johenryMylesBorins
authored andcommitted
test: remove assert message
PR-URL: #15997 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Gibson Fahnestock <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent e48c8b3 commit 50cae5c

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
@@ -66,8 +66,8 @@ FakeStream.prototype.close = function() {
6666

6767
// expect all streams to close properly.
6868
process.on('exit', function() {
69-
assert.strictEqual(cnt, wclosed, 'writable streams closed');
70-
assert.strictEqual(cnt, rclosed, 'readable streams closed');
69+
assert.strictEqual(cnt, wclosed);
70+
assert.strictEqual(cnt, rclosed);
7171
});
7272

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

0 commit comments

Comments
 (0)