aboutsummaryrefslogtreecommitdiff
path: root/test/parallel/test-buffer-fill.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/parallel/test-buffer-fill.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/parallel/test-buffer-fill.js')
-rw-r--r--test/parallel/test-buffer-fill.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parallel/test-buffer-fill.js b/test/parallel/test-buffer-fill.js
index bab1279680..b2f14c3e42 100644
--- a/test/parallel/test-buffer-fill.js
+++ b/test/parallel/test-buffer-fill.js
@@ -368,7 +368,7 @@ assert.strictEqual(
// Test that bypassing 'length' won't cause an abort.
common.expectsError(() => {
- const buf = new Buffer('w00t');
+ const buf = Buffer.from('w00t');
Object.defineProperty(buf, 'length', {
value: 1337,
enumerable: true