Skip to content

Commit

Permalink
Fix Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
waynerobinson committed Feb 15, 2024
1 parent a355182 commit b60cc4a
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion governor/src/clock/quanta.rs
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,13 @@ mod test {
for i in 0..5 {
thread::sleep(Duration::from_millis(250));
let now = c.now();
assert!(now > start, "now={:?} not after start={:?} on iteration={}", now, start, i);
assert!(
now > start,
"now={:?} not after start={:?} on iteration={}",

Check warning on line 160 in governor/src/clock/quanta.rs

View check run for this annotation

Codecov / codecov/patch

governor/src/clock/quanta.rs#L160

Added line #L160 was not covered by tests
now,
start,
i
);
}
}
}

0 comments on commit b60cc4a

Please sign in to comment.