Fix errors in test_hashset().

All tests now pass.
This commit is contained in:
Samuel Chase 2013-05-11 20:35:44 +05:30
parent 7d43b12c32
commit 37bea2a7d0

View file

@ -178,6 +178,7 @@ impl<A:ToStr> ToStr for @[A] {
#[allow(non_implicitly_copyable_typarams)]
mod tests {
use hashmap::HashMap;
use hashmap::HashSet;
#[test]
fn test_simple_types() {
assert!(1i.to_str() == ~"1");
@ -224,8 +225,8 @@ mod tests {
#[test]
fn test_hashset() {
let mut set: HashSet<int, int> = HashSet::new();
let empty_set: HashSet<int, int> = HashSet::new();
let mut set: HashSet<int> = HashSet::new();
let empty_set: HashSet<int> = HashSet::new();
set.insert(1);
set.insert(2);
@ -233,6 +234,6 @@ mod tests {
let set_str = set.to_str();
assert!(set_str == ~"{1, 2}" || set_str == ~"{2, 1}");
assert!(empty.to_str() == ~"{}");
assert!(empty_set.to_str() == ~"{}");
}
}