Skip to content

Commit

Permalink
Some minor test fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinswiber committed Oct 2, 2023
1 parent 57e74a2 commit 5e0389f
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1456,11 +1456,9 @@ mod tests {
None
}
})
.collect::<std::collections::HashSet<String>>()
.into_iter()
.collect::<Vec<String>>();
.collect::<std::collections::HashSet<String>>();

assert!(duplicates.is_empty(), "duplicates: {:#?}", duplicates);
assert!(duplicates.is_empty(), "duplicates: {duplicates:?}");
}
}
}
Expand Down

0 comments on commit 5e0389f

Please sign in to comment.