diff options
| author | Samuel Chase <samebchase@gmail.com> | 2013-05-11 20:35:44 +0530 |
|---|---|---|
| committer | Samuel Chase <samebchase@gmail.com> | 2013-05-11 20:35:44 +0530 |
| commit | 37bea2a7d07b8a42d9502b7318cf9317ad3680b1 (patch) | |
| tree | 7a402460cad552902b888c7c495068a4900d8ad1 | |
| parent | 7d43b12c323b07d3f3d17738d808071b66519c58 (diff) | |
| download | rust-37bea2a7d07b8a42d9502b7318cf9317ad3680b1.tar.gz rust-37bea2a7d07b8a42d9502b7318cf9317ad3680b1.zip | |
Fix errors in test_hashset().
All tests now pass.
| -rw-r--r-- | src/libcore/to_str.rs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/libcore/to_str.rs b/src/libcore/to_str.rs index 3c75cbaec15..08e72e8fe86 100644 --- a/src/libcore/to_str.rs +++ b/src/libcore/to_str.rs @@ -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() == ~"{}"); } } \ No newline at end of file |
