From 73a1919cc661fb0ee301002843fc4226119fc2c0 Mon Sep 17 00:00:00 2001 From: Siddhant Shukla <70441430+Siddhantshukla814@users.noreply.github.com> Date: Fri, 9 Aug 2024 16:38:04 +0530 Subject: [PATCH] Update common.inc FCP check should be 3000 not 3 --- www/experiments/common.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/experiments/common.inc b/www/experiments/common.inc index aba4f5611e..71eb339dca 100644 --- a/www/experiments/common.inc +++ b/www/experiments/common.inc @@ -299,7 +299,7 @@ foreach ($assessment as $key => $cat) { } elseif ( $numRecommended > 2 // and it's the quickness category and fcp is reasonably slow - && ($key !== "Quick" || $key === "Quick" && $fcpCheck > 3 ) + && ($key !== "Quick" || $key === "Quick" && $fcpCheck > 3000 ) && ($key !== "Resilient" || $key === "Resilient" && $blocking3pReqs > 0 ) && ($key !== "Usable" || $key === "Usable" && ((isset($cls) && $cls > 0) || (isset($tbtCheck) && $tbtCheck > 2)) ) ) {