1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-29 12:07:46 +00:00

more: fix test

This commit is contained in:
Terts Diepraam 2021-06-05 14:42:43 +02:00
parent 420e9322ea
commit 2760efb01d

View file

@ -380,7 +380,7 @@ mod tests {
fn test_calc_range() { fn test_calc_range() {
assert_eq!((0, 24), calc_range(0, 25, 100)); assert_eq!((0, 24), calc_range(0, 25, 100));
assert_eq!((50, 74), calc_range(50, 25, 100)); assert_eq!((50, 74), calc_range(50, 25, 100));
assert_eq!((75, 100), calc_range(85, 25, 100)); assert_eq!((76, 100), calc_range(85, 25, 100));
} }
#[test] #[test]
fn test_break_lines_long() { fn test_break_lines_long() {