From 161f2e2aa2c9b79ec6f2949438180201731449da Mon Sep 17 00:00:00 2001 From: Jeffrey Mendelsohn Date: Tue, 21 Jan 2025 09:57:08 -0500 Subject: [PATCH] improve bound for unnecessary check (#5173) * improve bound for unnecessary check * after discussion, removing the line --- groups/bal/balb/balb_performancemonitor.t.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/groups/bal/balb/balb_performancemonitor.t.cpp b/groups/bal/balb/balb_performancemonitor.t.cpp index 9c5d0802bb..2b479c37d0 100644 --- a/groups/bal/balb/balb_performancemonitor.t.cpp +++ b/groups/bal/balb/balb_performancemonitor.t.cpp @@ -603,7 +603,6 @@ void testParseProcStatStr(const bsl::string& procStatStr, const double cpuTimeS = static_cast(procStats.d_stime) / static_cast(clockTicksPerSec); - ASSERTV(cpuTimeU, 0.1 < cpuTimeU); ASSERTV(cpuTimeU, cpuTimeU < 3); ASSERTV(cpuTimeS, cpuTimeS < 1);