summaryrefslogtreecommitdiffstats
path: root/tokio-threadpool/tests/threadpool.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tokio-threadpool/tests/threadpool.rs')
-rw-r--r--tokio-threadpool/tests/threadpool.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tokio-threadpool/tests/threadpool.rs b/tokio-threadpool/tests/threadpool.rs
index 5636a3b8..cf3af15c 100644
--- a/tokio-threadpool/tests/threadpool.rs
+++ b/tokio-threadpool/tests/threadpool.rs
@@ -350,7 +350,7 @@ fn busy_threadpool_is_not_idle() {
struct IdleFut<'a>(&'a mut Shutdown);
- impl<'a> Future for IdleFut<'a> {
+ impl Future for IdleFut<'_> {
type Output = ();
fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<()> {