test: Fix smallintmap test

This commit is contained in:
Patrick Walton 2012-09-05 11:24:44 -07:00
parent 4e515c14af
commit 914b6fead9
1 changed files with 3 additions and 3 deletions

View File

@ -2,16 +2,16 @@
use std;
import std::smallintmap;
import std::smallintmap::smallintmap;
import std::smallintmap::SmallIntMap;
import io::WriterUtil;
fn append_sequential(min: uint, max: uint, map: smallintmap<uint>) {
fn append_sequential(min: uint, max: uint, map: SmallIntMap<uint>) {
for uint::range(min, max) |i| {
map.insert(i, i + 22u);
}
}
fn check_sequential(min: uint, max: uint, map: smallintmap<uint>) {
fn check_sequential(min: uint, max: uint, map: SmallIntMap<uint>) {
for uint::range(min, max) |i| {
assert map.get(i) == i + 22u;
}