summaryrefslogtreecommitdiff
path: root/test/async-hooks/test-udpsendwrap.js
diff options
context:
space:
mode:
authorСковорода Никита Андреевич <chalkerx@gmail.com>2018-02-24 19:52:14 +0300
committerAnatoli Papirovski <apapirovski@mac.com>2018-03-04 12:50:15 +0100
commit8ed44ff1c4b48fe62a0aef88bd1d0385f0eadd03 (patch)
treeae30dd20fbcfe684048084a472f949f6d9f33f2c /test/async-hooks/test-udpsendwrap.js
parent1572a5b6cd16aeb6cafd338814ead76c0f198f1d (diff)
downloadandroid-node-v8-8ed44ff1c4b48fe62a0aef88bd1d0385f0eadd03.tar.gz
android-node-v8-8ed44ff1c4b48fe62a0aef88bd1d0385f0eadd03.tar.bz2
android-node-v8-8ed44ff1c4b48fe62a0aef88bd1d0385f0eadd03.zip
test,benchmark: use new Buffer API where appropriate
For tests / benchmarks that are creating Buffer instances for any reason other than to test Buffer constructor, use the new Buffer.alloc/Buffer.from API instead of the deprecated API. PR-URL: https://github.com/nodejs/node/pull/18980 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Diffstat (limited to 'test/async-hooks/test-udpsendwrap.js')
-rw-r--r--test/async-hooks/test-udpsendwrap.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/async-hooks/test-udpsendwrap.js b/test/async-hooks/test-udpsendwrap.js
index 10deaca845..d8ab77730f 100644
--- a/test/async-hooks/test-udpsendwrap.js
+++ b/test/async-hooks/test-udpsendwrap.js
@@ -18,7 +18,7 @@ const sock = dgram
function onlistening() {
sock.send(
- new Buffer(2), 0, 2, sock.address().port,
+ Buffer.alloc(2), 0, 2, sock.address().port,
undefined, common.mustCall(onsent));
// init not called synchronously because dns lookup always wraps