mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-14 02:49:40 +00:00
libcollections: unit test fixes
This commit is contained in:
parent
73b9aeb429
commit
f7aac937f5
@ -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]
|
||||
|
@ -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() {
|
||||
|
Loading…
Reference in New Issue
Block a user