Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lbeder committed Dec 13, 2024
1 parent 45df318 commit 16644b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/stability.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2030,7 +2030,7 @@ pub fn stability_test(tasks: usize) {
let mut pbs = Vec::new();
for i in 0..tasks {
let pb = mb
.add(ProgressBar::new(ITERATIONS))
.add(ProgressBar::new(ITERATIONS as u64))
.with_style(
ProgressStyle::with_template("{bar:80.cyan/blue} {msg} {pos:>4}/{len:8} {percent}% ({eta})")
.unwrap(),
Expand Down Expand Up @@ -2079,5 +2079,5 @@ pub fn stability_test(tasks: usize) {
pb.finish();
});

println!("All tasks have completed successfully without errors")
println!("\n\nAll tasks have completed successfully without errors")
}

0 comments on commit 16644b4

Please sign in to comment.