From 5c2f7d22495131629897d631d004c958e3715965 Mon Sep 17 00:00:00 2001 From: Mark S Date: Wed, 20 Nov 2024 10:15:18 -0500 Subject: [PATCH] style(clippy-lint): remove unnecessary path prefix --- testcontainers/src/runners/async_runner.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testcontainers/src/runners/async_runner.rs b/testcontainers/src/runners/async_runner.rs index 4ec84d04..6ea495bc 100644 --- a/testcontainers/src/runners/async_runner.rs +++ b/testcontainers/src/runners/async_runner.rs @@ -548,7 +548,7 @@ mod tests { } // containers have been dropped, should clean up networks - tokio::time::sleep(std::time::Duration::from_secs(1)).await; + tokio::time::sleep(Duration::from_secs(1)).await; let client = Client::lazy_client().await?; assert!(!client.network_exists("awesome-net-2").await?); Ok(())