about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/map.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/libstd/map.rs b/src/libstd/map.rs
index 1784a2cac43..3fab62261fc 100644
--- a/src/libstd/map.rs
+++ b/src/libstd/map.rs
@@ -658,9 +658,6 @@ mod tests {
     fn test_removal() {
         debug!("*** starting test_removal");
         let num_to_insert: uint = 64u;
-        assert (hash(&0u) == hash(&1u));
-        assert (hash(&2u) == hash(&3u));
-        assert (hash(&0u) != hash(&2u));
         let hm: map::HashMap<uint, uint> =
             map::HashMap::<uint, uint>();
         let mut i: uint = 0u;