From 1ec048e18929bd589c42722653a12845f5d60773 Mon Sep 17 00:00:00 2001 From: Lei Shi Date: Mon, 27 Nov 2023 16:01:49 +0800 Subject: [PATCH] benchmark: update iterations in benchmark/crypto/get-ciphers.js Fixes: https://github.com/nodejs/node/issues/50571 --- benchmark/crypto/get-ciphers.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benchmark/crypto/get-ciphers.js b/benchmark/crypto/get-ciphers.js index 0ace9b49820db8..e3cd955a983dd2 100644 --- a/benchmark/crypto/get-ciphers.js +++ b/benchmark/crypto/get-ciphers.js @@ -3,7 +3,7 @@ const common = require('../common.js'); const bench = common.createBenchmark(main, { - n: [1, 5000], + n: [1, 500000], v: ['crypto', 'tls'], });