Skip to content

Commit

Permalink
Correcting test
Browse files Browse the repository at this point in the history
  • Loading branch information
robinbernon committed Apr 1, 2021
1 parent 1262825 commit 6446756
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/serde.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ fn map_serde_tokens() {

#[test]
fn map_serde_tokens_empty_generic() {
let map = LinkedHashMap::<char, u32>::new();
let map = LinkedHashMap::<char, u32, FxBuildHasher>::with_hasher(FxBuildHasher::default());

assert_tokens(&map, &[Token::Map { len: Some(0) }, Token::MapEnd]);
}
Expand Down

0 comments on commit 6446756

Please sign in to comment.