Rollup merge of #54194 - fintelia:patch-3, r=cramertj
Remove println!() statement from HashMap unit test
This commit is contained in:
commit
8c999fadb9
@ -3532,12 +3532,11 @@ mod test_map {
|
||||
m.insert(x, ());
|
||||
}
|
||||
|
||||
for i in 0..1000 {
|
||||
for _ in 0..1000 {
|
||||
let x = rng.gen_range(-10, 10);
|
||||
match m.entry(x) {
|
||||
Vacant(_) => {}
|
||||
Occupied(e) => {
|
||||
println!("{}: remove {}", i, x);
|
||||
e.remove();
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user