chore: fmt + clippy

This commit is contained in:
Edward Langley
2026-04-09 00:21:48 -07:00
parent 08df85664e
commit 6239ac83ad
12 changed files with 264 additions and 195 deletions

View File

@ -1174,7 +1174,10 @@ mod formula_tests {
.unwrap();
// Full precision: Tax is exactly 0.75, Total is exactly 10.75
assert!(approx_eq(tax, 0.75), "Tax should be 0.75 (full prec), got {tax}");
assert!(
approx_eq(tax, 0.75),
"Tax should be 0.75 (full prec), got {tax}"
);
assert!(
approx_eq(total, 10.75),
"Total should be 10.75 (full prec), got {total}"