From 2299ebeb5c18570d3ba19c8e5af27f491a4a2c07 Mon Sep 17 00:00:00 2001 From: Siarhei Fedartsou Date: Sun, 21 Jul 2024 16:36:24 +0200 Subject: [PATCH] Update bench.js --- scripts/ci/bench.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/ci/bench.js b/scripts/ci/bench.js index 06465665f..941d83128 100644 --- a/scripts/ci/bench.js +++ b/scripts/ci/bench.js @@ -100,7 +100,7 @@ async function route(osrm, numRequests, gpsData) { async function table(osrm, numRequests, gpsData) { const times = []; for (let i = 0; i < numRequests; i++) { - const numPoints = Math.floor(RNG() * 50) + 50; + const numPoints = Math.floor(RNG() * 3) + 15; const coordinates = []; for (let i = 0; i < numPoints; i++) { coordinates.push(gpsData.getRandomCoordinate());