Skip to content

Commit

Permalink
Break long line
Browse files Browse the repository at this point in the history
  • Loading branch information
LukasKalbertodt committed Jun 28, 2020
1 parent 458a856 commit f58bd48
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -359,8 +359,9 @@ pub fn run_tests<D: 'static + Send + Sync>(
for event in run_tests_threaded(args, tests, run_test) {
match event {
RunnerEvent::Started { name, kind } => {
// If tests are being run sequentially, we print the test name when it starts
// running and the result after it is done. Otherwise we print both at the same time.
// If tests are being run sequentially, we print the test name
// when it starts running and the result after it is done.
// Otherwise we print both at the same time.
if args.num_threads == Some(1) {
// Print `test foo ...`.
printer.print_test(&name, &kind);
Expand Down

0 comments on commit f58bd48

Please sign in to comment.