Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Zyad Hassan <[email protected]>
  • Loading branch information
carolynzech and zhassan-aws authored Dec 18, 2024
1 parent 3ce002a commit 80442fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kani-driver/src/harness_runner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -116,9 +116,9 @@ impl KaniSession {

let output = result.render(&self.args.output_format, harness.attributes.should_panic);
if rayon::current_num_threads() > 1 {
println!("Thread {thread_index}: {}", output);
println!("Thread {thread_index}: {output}");
} else {
println!("{}", output);
println!("{output}");
}
}
}
Expand Down

0 comments on commit 80442fc

Please sign in to comment.