From 50cae5c44f097f8c180a66c608a165875a4605ca Mon Sep 17 00:00:00 2001 From: Joe Henry Date: Fri, 6 Oct 2017 12:16:35 -0600 Subject: [PATCH] test: remove assert message PR-URL: https://github.com/nodejs/node/pull/15997/ Reviewed-By: Colin Ihrig Reviewed-By: Gibson Fahnestock Reviewed-By: James M Snell --- test/pummel/test-stream-pipe-multi.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/pummel/test-stream-pipe-multi.js b/test/pummel/test-stream-pipe-multi.js index bb16c62348dab1..c89d9cc6353713 100644 --- a/test/pummel/test-stream-pipe-multi.js +++ b/test/pummel/test-stream-pipe-multi.js @@ -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++) {