summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndres Bedoya <mortiis.angel@gmail.com>2019-06-21 16:43:15 -0500
committerRich Trott <rtrott@gmail.com>2019-07-30 06:27:39 -0700
commit3d56e89c8a569a1995926ee84dc54b965b751dad (patch)
tree6953f53d0a66f3b175a327cc901e70831af103f6
parent9cda6f28c81a6be6f6a1d0a63ab04a41171aeee9 (diff)
downloadandroid-node-v8-3d56e89c8a569a1995926ee84dc54b965b751dad.tar.gz
android-node-v8-3d56e89c8a569a1995926ee84dc54b965b751dad.tar.bz2
android-node-v8-3d56e89c8a569a1995926ee84dc54b965b751dad.zip
test: udpate test comment description
test-buffer-failed-alloc-typed-arrays.js is working fine, but the description was not correct. PR-URL: https://github.com/nodejs/node/pull/28351 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
-rw-r--r--test/parallel/test-buffer-failed-alloc-typed-arrays.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parallel/test-buffer-failed-alloc-typed-arrays.js b/test/parallel/test-buffer-failed-alloc-typed-arrays.js
index 4a322a30d9..9e480a5c8d 100644
--- a/test/parallel/test-buffer-failed-alloc-typed-arrays.js
+++ b/test/parallel/test-buffer-failed-alloc-typed-arrays.js
@@ -23,7 +23,7 @@ const allocators = [
for (const allocator of allocators) {
for (const size of sizes) {
try {
- // These allocations are known to fail. If they do,
+ // Some of these allocations are known to fail. If they do,
// Uint32Array should still produce a zeroed out result.
allocator(size);
} catch {