From 9b47f77571ba0c418b83c2574f241ffd05a4c651 Mon Sep 17 00:00:00 2001 From: Andres Bedoya Date: Fri, 21 Jun 2019 16:43:15 -0500 Subject: [PATCH] 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 Reviewed-By: Yongsheng Zhang Reviewed-By: Anna Henningsen Reviewed-By: Ruben Bridgewater Reviewed-By: Trivikram Kamat Reviewed-By: James M Snell Reviewed-By: Jiawen Geng --- test/parallel/test-buffer-failed-alloc-typed-arrays.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/parallel/test-buffer-failed-alloc-typed-arrays.js b/test/parallel/test-buffer-failed-alloc-typed-arrays.js index 4a322a30d92be2..9e480a5c8d3853 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 {