about summary refs log tree commit diff
path: root/src/libcore
diff options
context:
space:
mode:
authorEduard Burtescu <edy.burt@gmail.com>2014-12-19 14:02:22 +0200
committerEduard Burtescu <edy.burt@gmail.com>2014-12-20 07:49:37 +0200
commitb45d30da34142fc33dd41bbf67c7dfc1a69ddf01 (patch)
treecff82472a01b56c5a8f0113a33c4821db3a8a87f /src/libcore
parentf95e0c21aaf752cf1401c872dfb1d8de1a22b6f2 (diff)
downloadrust-b45d30da34142fc33dd41bbf67c7dfc1a69ddf01.tar.gz
rust-b45d30da34142fc33dd41bbf67c7dfc1a69ddf01.zip
Fix fallout of removing import_shadowing in tests.
Diffstat (limited to 'src/libcore')
-rw-r--r--src/libcore/hash/sip.rs7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/libcore/hash/sip.rs b/src/libcore/hash/sip.rs
index e10f5a9fed1..bdc210f0d8e 100644
--- a/src/libcore/hash/sip.rs
+++ b/src/libcore/hash/sip.rs
@@ -271,14 +271,9 @@ pub fn hash_with_keys<Sized? T: Hash<SipState>>(k0: u64, k1: u64, value: &T) ->
 #[cfg(test)]
 mod tests {
     use test::Bencher;
-    use std::prelude::*;
+    use prelude::*;
     use std::fmt;
 
-    use str::Str;
-    use string::String;
-    use slice::{AsSlice, SliceExt};
-    use vec::Vec;
-
     use super::super::{Hash, Writer};
     use super::{SipState, hash, hash_with_keys};