Skip to content

Commit e7416d5

Browse files
committed
fix: TEXT_MAX_LEN
1 parent 852ad79 commit e7416d5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/reporter/progress_report.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ impl<Size: size::Size + Into<u64>> ProgressReport<Size> {
2323
/// performance penalty from string resizing.
2424
///
2525
/// The value of this function is made correct by a unit test.
26-
const TEXT_MAX_LEN: usize = 87;
26+
const TEXT_MAX_LEN: usize = 145;
2727

2828
/// Create a text to be used in [`Self::TEXT`].
2929
fn text(self) -> String {

0 commit comments

Comments
 (0)