chore: rustfmt
This commit is contained in:
parent
352267871c
commit
a6f99645c6
|
@ -100,19 +100,13 @@ mod tests {
|
|||
#[test]
|
||||
fn count_collection_some() {
|
||||
let collection = get_vec_map();
|
||||
assert_eq!(
|
||||
1,
|
||||
count_collection_iterator(&collection, Progress::Some)
|
||||
);
|
||||
assert_eq!(1, count_collection_iterator(&collection, Progress::Some));
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn count_collection_none() {
|
||||
let collection = get_vec_map();
|
||||
assert_eq!(
|
||||
4,
|
||||
count_collection_iterator(&collection, Progress::None)
|
||||
);
|
||||
assert_eq!(4, count_collection_iterator(&collection, Progress::None));
|
||||
}
|
||||
|
||||
#[test]
|
||||
|
|
Loading…
Reference in New Issue