diff --git a/test/parallel/test-stream2-objects.js b/test/parallel/test-stream2-objects.js index 159286a4322257..6894d4b9171411 100644 --- a/test/parallel/test-stream2-objects.js +++ b/test/parallel/test-stream2-objects.js @@ -76,7 +76,7 @@ function toArray(callback) { function fromArray(list) { const r = new Readable({ objectMode: true }); - r._read = common.noop; + r._read = common.mustNotCall(); list.forEach(function(chunk) { r.push(chunk); }); @@ -164,7 +164,7 @@ test('can read strings as objects', function(t) { const r = new Readable({ objectMode: true }); - r._read = common.noop; + r._read = common.mustNotCall(); const list = ['one', 'two', 'three']; list.forEach(function(str) { r.push(str); @@ -182,7 +182,7 @@ test('read(0) for object streams', function(t) { const r = new Readable({ objectMode: true }); - r._read = common.noop; + r._read = common.mustNotCall(); r.push('foobar'); r.push(null); @@ -198,7 +198,7 @@ test('falsey values', function(t) { const r = new Readable({ objectMode: true }); - r._read = common.noop; + r._read = common.mustNotCall(); r.push(false); r.push(0); @@ -249,7 +249,7 @@ test('high watermark push', function(t) { highWaterMark: 6, objectMode: true }); - r._read = common.noop; + r._read = common.mustNotCall(); for (let i = 0; i < 6; i++) { const bool = r.push(i); assert.strictEqual(bool, i !== 5);