summaryrefslogtreecommitdiffstats
path: root/tokio-test/src
diff options
context:
space:
mode:
Diffstat (limited to 'tokio-test/src')
-rw-r--r--tokio-test/src/clock.rs2
-rw-r--r--tokio-test/src/task.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/tokio-test/src/clock.rs b/tokio-test/src/clock.rs
index dd09a009..c5fac787 100644
--- a/tokio-test/src/clock.rs
+++ b/tokio-test/src/clock.rs
@@ -22,9 +22,9 @@
//! });
//! ```
+use tokio::executor::park::{Park, Unpark};
use tokio::timer::clock::{Clock, Now};
use tokio::timer::Timer;
-use tokio_executor::park::{Park, Unpark};
use std::marker::PhantomData;
use std::rc::Rc;
diff --git a/tokio-test/src/task.rs b/tokio-test/src/task.rs
index 91da41eb..5468749a 100644
--- a/tokio-test/src/task.rs
+++ b/tokio-test/src/task.rs
@@ -1,6 +1,6 @@
//! Futures task based helpers
-use tokio_executor::enter;
+use tokio::executor::enter;
use pin_convert::AsPinMut;
use std::future::Future;