Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
robertbastian committed Aug 30, 2023
1 parent d980563 commit 65bd370
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/collections/src/codepointinvlist/builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,7 @@ mod tests {
use zerovec::ZeroVec;

fn generate_tester(ex: &[u32]) -> CodePointInversionListBuilder {
let inv_list = ZeroVec::<u32>::alloc_from_slice(&ex);
let inv_list = ZeroVec::<u32>::alloc_from_slice(ex);
let check = CodePointInversionList::try_from_inversion_list(inv_list).unwrap();
let mut builder = CodePointInversionListBuilder::new();
builder.add_set(&check);
Expand Down

0 comments on commit 65bd370

Please sign in to comment.