libcollections: unit test fixes

This commit is contained in:
Manish Goregaokar 2015-02-06 08:05:52 +05:30
parent 73b9aeb429
commit f7aac937f5
2 changed files with 4 additions and 2 deletions

View file

@ -1592,7 +1592,8 @@ mod test {
use prelude::*;
use std::iter::range_inclusive;
use super::{BTreeMap, Occupied, Vacant};
use super::BTreeMap;
use super::Entry::{Occupied, Vacant};
use Bound::{self, Included, Excluded, Unbounded};
#[test]

View file

@ -915,7 +915,8 @@ mod test_map {
use prelude::*;
use core::hash::{hash, SipHasher};
use super::{VecMap, Occupied, Vacant};
use super::VecMap;
use super::Entry::{Occupied, Vacant};
#[test]
fn test_get_mut() {