diff options
Diffstat (limited to 'components/hashglobe/src/hash_map.rs')
-rw-r--r-- | components/hashglobe/src/hash_map.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/hashglobe/src/hash_map.rs b/components/hashglobe/src/hash_map.rs index 5b3f7b7c02b..7622c284f99 100644 --- a/components/hashglobe/src/hash_map.rs +++ b/components/hashglobe/src/hash_map.rs @@ -2645,7 +2645,7 @@ mod test_map { m2.insert(1, 2); m2.insert(2, 3); - assert!(m1 != m2); + assert_ne!(m1, m2); m2.insert(3, 4); |