Skip to content

Commit

Permalink
chore: address warnings (#313)
Browse files Browse the repository at this point in the history
  • Loading branch information
reubeno authored Jan 9, 2025
1 parent 972ecf9 commit f38f088
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions brush-core/src/timing.rs
Original file line number Diff line number Diff line change
Expand Up @@ -100,11 +100,11 @@ mod tests {
"0m12.345s"
);
assert_eq!(
format_duration_non_posixly(&Duration::from_millis(123456)),
format_duration_non_posixly(&Duration::from_millis(123_456)),
"2m3.456s"
);
assert_eq!(
format_duration_non_posixly(&Duration::from_millis(1234567)),
format_duration_non_posixly(&Duration::from_millis(1_234_567)),
"20m34.567s"
);

Expand Down

0 comments on commit f38f088

Please sign in to comment.