diff options
Diffstat (limited to 'test/parallel/test-stream-readable-constructor-set-methods.js')
-rw-r--r-- | test/parallel/test-stream-readable-constructor-set-methods.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parallel/test-stream-readable-constructor-set-methods.js b/test/parallel/test-stream-readable-constructor-set-methods.js index a5d7e48bfb..e5e3114de4 100644 --- a/test/parallel/test-stream-readable-constructor-set-methods.js +++ b/test/parallel/test-stream-readable-constructor-set-methods.js @@ -14,6 +14,6 @@ const r = new Readable({ read: _read }); r.resume(); process.on('exit', function() { - assert.equal(r._read, _read); + assert.strictEqual(r._read, _read); assert(_readCalled); }); |