Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
matko committed Nov 3, 2023
1 parent 4296aed commit 6d17aad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/structure/tfc/typed.rs
Original file line number Diff line number Diff line change
Expand Up @@ -781,7 +781,7 @@ mod tests {
let id = dict.id::<String, String>(&"Batty".to_string());
assert_eq!(IdLookupResult::Found(2), id);
assert_eq!(IdLookupResult::Found(6), dict.id(&20_u32));
assert_eq!(IdLookupResult::Found(7), dict.id(&(-500_i32)));
assert_eq!(IdLookupResult::Found(7), dict.id::<i32, i32>(&(-500_i32)));

for i in 1..vec.len() + 1 {
let entry = dict.entry(i).unwrap();
Expand Down

0 comments on commit 6d17aad

Please sign in to comment.