summaryrefslogtreecommitdiffstats
path: root/tokio-test/tests/block_on.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tokio-test/tests/block_on.rs')
-rw-r--r--tokio-test/tests/block_on.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/tokio-test/tests/block_on.rs b/tokio-test/tests/block_on.rs
index 9b4959e9..6d5f481a 100644
--- a/tokio-test/tests/block_on.rs
+++ b/tokio-test/tests/block_on.rs
@@ -1,8 +1,9 @@
#![warn(rust_2018_idioms)]
-use std::time::{Duration, Instant};
+use tokio::timer::delay;
use tokio_test::block_on;
-use tokio_timer::delay;
+
+use std::time::{Duration, Instant};
#[test]
fn async_block() {