summaryrefslogtreecommitdiffstats
path: root/tokio-test
diff options
context:
space:
mode:
authorCarl Lerche <me@carllerche.com>2019-11-05 19:12:30 -0800
committerGitHub <noreply@github.com>2019-11-05 19:12:30 -0800
commitd5c1119c881c9a8b511aa9000fd26b9bda014256 (patch)
tree72e2ca6b655f29e948a91ba4573a95350cb241e0 /tokio-test
parenta6253ed05a1e0d14bc64915f5937c29092df9497 (diff)
runtime: combine `executor` and `runtime` mods (#1734)
Now, all types are under `runtime`. `executor::util` is moved to a top level `util` module.
Diffstat (limited to 'tokio-test')
-rw-r--r--tokio-test/src/clock.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tokio-test/src/clock.rs b/tokio-test/src/clock.rs
index c5fac787..38417539 100644
--- a/tokio-test/src/clock.rs
+++ b/tokio-test/src/clock.rs
@@ -22,7 +22,7 @@
//! });
//! ```
-use tokio::executor::park::{Park, Unpark};
+use tokio::runtime::{Park, Unpark};
use tokio::timer::clock::{Clock, Now};
use tokio::timer::Timer;