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/libstd/io/timer.rs | |
| parent | f95e0c21aaf752cf1401c872dfb1d8de1a22b6f2 (diff) | |
| download | rust-b45d30da34142fc33dd41bbf67c7dfc1a69ddf01.tar.gz rust-b45d30da34142fc33dd41bbf67c7dfc1a69ddf01.zip | |
Fix fallout of removing import_shadowing in tests.
Diffstat (limited to 'src/libstd/io/timer.rs')
| -rw-r--r-- | src/libstd/io/timer.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libstd/io/timer.rs b/src/libstd/io/timer.rs index 79048c37ab5..953effe4345 100644 --- a/src/libstd/io/timer.rs +++ b/src/libstd/io/timer.rs @@ -225,11 +225,11 @@ fn in_ms_u64(d: Duration) -> u64 { #[cfg(test)] mod test { - use super::*; - use time::Duration; - use task::spawn; use prelude::*; + use super::Timer; + use time::Duration; + #[test] fn test_io_timer_sleep_simple() { let mut timer = Timer::new().unwrap(); |
