Description: fix Buffer use
Author: Xavier Guimard <yadd@debian.org>
Forwarded: no
Last-Update: 2020-06-23

--- a/test-browser.js
+++ b/test-browser.js
@@ -5,7 +5,7 @@
 var ws = new stream.Writable()
 
 rs._read = function (size) {
-  this.push(Buffer(size).fill('abc'))
+  this.push(Buffer.alloc(size).fill('abc'))
 }
 
 ws._write = function (chunk, encoding, cb) {
