Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
preston-evans98 committed Oct 17, 2023
1 parent 4806792 commit 1704e6d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ fn priority_sequencer_flow_general() {
vec![false, false],
];
let blobs_by_slot: Vec<_> = make_blobs_by_slot(&is_from_preferred_by_slot);
let mut expected_blobs = blobs_by_slot.iter().cloned().flatten().collect::<Vec<_>>();
let mut expected_blobs = blobs_by_slot.iter().flatten().cloned().collect::<Vec<_>>();
expected_blobs.sort_by_key(|b| b.should_get_processed_in());
let mut expected_blobs = expected_blobs.into_iter();
let mut slots_iterator = blobs_by_slot
Expand Down

0 comments on commit 1704e6d

Please sign in to comment.