From 5c3ee886fc3b76344a23b538a9f2dfbc7338ce9a Mon Sep 17 00:00:00 2001 From: Rafael Gonzaga Date: Mon, 14 Oct 2024 09:14:01 -0300 Subject: [PATCH] benchmark: adjust byte size for buffer-copy PR-URL: https://github.com/nodejs/node/pull/55295 Reviewed-By: Luigi Pinca --- benchmark/buffers/buffer-copy.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benchmark/buffers/buffer-copy.js b/benchmark/buffers/buffer-copy.js index a3bf6693b146b5..c2dafc8515c4f2 100644 --- a/benchmark/buffers/buffer-copy.js +++ b/benchmark/buffers/buffer-copy.js @@ -2,7 +2,7 @@ const common = require('../common.js'); const bench = common.createBenchmark(main, { - bytes: [0, 8, 128, 32 * 1024], + bytes: [8, 128, 1024], partial: ['true', 'false'], n: [6e6], });