test: remove assert message · nodejs/node@3ad6a9d

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++) {