From 3ad6a9dfc4f41ebe0e86ba960246aa8778d01074 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 478b61c822d4e0..cb3a8ac9aea52f 100644 --- a/test/pummel/test-stream-pipe-multi.js +++ b/test/pummel/test-stream-pipe-multi.js @@ -45,8 +45,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++) {