Skip to content

Commit

Permalink
Style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
wks committed Apr 3, 2024
1 parent b526ec1 commit d9ef6a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/scheduler/worker_goals.rs
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ mod tests {
let mut goals = WorkerGoals::default();
let next_goal = goals.poll_next_goal();

assert!(matches!(next_goal, None));
assert!(matches!(goals.current(), None));
assert!(next_goal.is_none());
assert!(goals.current().is_none());
}

#[test]
Expand Down

0 comments on commit d9ef6a3

Please sign in to comment.