Skip to content

Commit

Permalink
fix floor test
Browse files Browse the repository at this point in the history
  • Loading branch information
0xPlish committed Apr 16, 2024
1 parent 89844a6 commit a15513d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -898,7 +898,7 @@ mod tests {
let start = Milli::new(69_693u64);
let mul = Milli::new(5_192u64);
let div = Milli::new(190u64);
assert_eq!(start.mul_div_floor(mul, div), Some(Milli::new(1903719u64)));
assert_eq!(start.mul_div_floor(mul, div), Some(Milli::new(1904452u64)));
}

#[test]
Expand Down

0 comments on commit a15513d

Please sign in to comment.