diff options
| author | Eduard Burtescu <edy.burt@gmail.com> | 2014-12-19 14:02:22 +0200 |
|---|---|---|
| committer | Eduard Burtescu <edy.burt@gmail.com> | 2014-12-20 07:49:37 +0200 |
| commit | b45d30da34142fc33dd41bbf67c7dfc1a69ddf01 (patch) | |
| tree | cff82472a01b56c5a8f0113a33c4821db3a8a87f /src/libcollections/vec_map.rs | |
| parent | f95e0c21aaf752cf1401c872dfb1d8de1a22b6f2 (diff) | |
| download | rust-b45d30da34142fc33dd41bbf67c7dfc1a69ddf01.tar.gz rust-b45d30da34142fc33dd41bbf67c7dfc1a69ddf01.zip | |
Fix fallout of removing import_shadowing in tests.
Diffstat (limited to 'src/libcollections/vec_map.rs')
| -rw-r--r-- | src/libcollections/vec_map.rs | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/libcollections/vec_map.rs b/src/libcollections/vec_map.rs index 75b7c917ced..1babde6066d 100644 --- a/src/libcollections/vec_map.rs +++ b/src/libcollections/vec_map.rs @@ -672,8 +672,7 @@ impl<V> DoubleEndedIterator<(uint, V)> for MoveItems<V> { #[cfg(test)] mod test_map { - use std::prelude::*; - use vec::Vec; + use prelude::*; use core::hash::hash; use super::VecMap; @@ -1046,8 +1045,7 @@ mod test_map { #[cfg(test)] mod bench { - extern crate test; - use self::test::Bencher; + use test::Bencher; use super::VecMap; use bench::{insert_rand_n, insert_seq_n, find_rand_n, find_seq_n}; |
