Update linear_map into_iter test

This commit is contained in:
Felix Stegmaier 2024-05-23 13:20:03 +02:00
parent f3c6698dec
commit a5f7a67f60
No known key found for this signature in database
GPG Key ID: 67AA4D4ECB976BCE

View File

@ -581,7 +581,7 @@ mod test {
src.insert("k4", "v4").unwrap();
let clone = src.clone();
for (k, v) in clone.into_iter() {
assert_eq!(v, *src.get(k).unwrap());
assert_eq!(v, src.remove(k).unwrap());
}
}
}