mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-29 20:46:07 +03:00
Remove debug printing.
This commit is contained in:
@@ -635,14 +635,12 @@ fn test_iteration() {
|
||||
|
||||
let mut map = TrieMap::new();
|
||||
do uint::range_rev(last, first) |x| {
|
||||
printfln!("%x", x);
|
||||
map.insert(x, x / 2);
|
||||
true
|
||||
};
|
||||
|
||||
let mut i = 0;
|
||||
for (k, &v) in map.iter() {
|
||||
printfln!("%x", k);
|
||||
assert_eq!(k, first + i);
|
||||
assert_eq!(v, k / 2);
|
||||
i += 1;
|
||||
|
||||
Reference in New Issue
Block a user