This commit is contained in:
Joel Wejdenstål 2022-04-29 19:12:47 +02:00
parent 94b49a2d60
commit 82c2323bc6
No known key found for this signature in database
GPG Key ID: DF03CEFBB1A915AA
1 changed files with 2 additions and 2 deletions

View File

@ -208,7 +208,7 @@ mod tests {
for (key, value) in view.iter() {
map.contains_key(key);
let map_entry = map.get(&key).unwrap();
let map_entry = map.get(key).unwrap();
assert_eq!(key, map_entry.key());
@ -222,7 +222,7 @@ mod tests {
for key in view.keys() {
map.contains_key(key);
let map_entry = map.get(&key).unwrap();
let map_entry = map.get(key).unwrap();
assert_eq!(key, map_entry.key());