summaryrefslogtreecommitdiff
path: root/test/sequential/test-regress-GH-1697.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/sequential/test-regress-GH-1697.js')
-rw-r--r--test/sequential/test-regress-GH-1697.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/sequential/test-regress-GH-1697.js b/test/sequential/test-regress-GH-1697.js
index bafd389fa8..1511cfd1cf 100644
--- a/test/sequential/test-regress-GH-1697.js
+++ b/test/sequential/test-regress-GH-1697.js
@@ -30,8 +30,8 @@ if (process.argv[2] === 'server') {
serverProcess.stdout.once('data', function() {
var client = net.createConnection(common.PORT, '127.0.0.1');
client.on('connect', function() {
- const alot = new Buffer(1024);
- const alittle = new Buffer(1);
+ const alot = Buffer.allocUnsafe(1024);
+ const alittle = Buffer.allocUnsafe(1);
for (var i = 0; i < 100; i++) {
client.write(alot);