summaryrefslogtreecommitdiffstats
path: root/tokio/tests/stream_timeout.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tokio/tests/stream_timeout.rs')
-rw-r--r--tokio/tests/stream_timeout.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tokio/tests/stream_timeout.rs b/tokio/tests/stream_timeout.rs
index f65c8351..698c1d39 100644
--- a/tokio/tests/stream_timeout.rs
+++ b/tokio/tests/stream_timeout.rs
@@ -1,14 +1,14 @@
#![cfg(feature = "full")]
use tokio::stream::{self, StreamExt};
-use tokio::time::{self, delay_for, Duration};
+use tokio::time::{self, sleep, Duration};
use tokio_test::*;
use futures::StreamExt as _;
async fn maybe_delay(idx: i32) -> i32 {
if idx % 2 == 0 {
- delay_for(ms(200)).await;
+ sleep(ms(200)).await;
}
idx
}