fabro(01KQRF98KVJANMHY45N67NTKPC): fixup (succeeded)

Fabro-Run: 01KQRF98KVJANMHY45N67NTKPC
Fabro-Completed: 9

⚒️ Generated with [Fabro](https://fabro.sh)
This commit is contained in:
Fabro 2026-05-04 04:27:48 +00:00
parent 080841e13f
commit e7606063ab

View file

@ -150,5 +150,8 @@ fn assert_non_llm_billing(billing: &serde_json::Value, expected_stage_ids: &[&st
let total_runtime_secs = billing["totals"]["runtime_secs"]
.as_f64()
.expect("totals should include runtime_secs");
assert_eq!(total_runtime_secs, runtime_secs);
assert!(
(total_runtime_secs - runtime_secs).abs() < f64::EPSILON,
"total_runtime_secs ({total_runtime_secs}) should equal sum of stage runtimes ({runtime_secs})"
);
}