From fe50701028bff46b5ab8a9d0f4967c7121a17954 Mon Sep 17 00:00:00 2001 From: Alexander Moisseev Date: Thu, 11 Sep 2025 14:16:26 +0300 Subject: [PATCH] [Test] Relax throughput counter check --- test/playwright/tests/scan.spec.mjs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/playwright/tests/scan.spec.mjs b/test/playwright/tests/scan.spec.mjs index 2e6447fa5e..0d30f64e28 100644 --- a/test/playwright/tests/scan.spec.mjs +++ b/test/playwright/tests/scan.spec.mjs @@ -124,8 +124,10 @@ test.describe.serial("Scan flow across WebUI tabs", () => { test("Throughput `Total messages` counter increased", async ({}, testInfo) => { testInfo.setTimeout(140000); + // With empty RRD the first PDP is lost, so only +1 is visible // Depending on row boundaries, throughput may show +2 or even +3 const targetValues = [ + scannedBefore.throughput + 1, scannedBefore.throughput + 2, scannedBefore.throughput + 3, ]; -- 2.47.3