From 6d488f4baa9d6498be85df2be9282f3c5dae5929 Mon Sep 17 00:00:00 2001 From: Bradford Hovinen Date: Mon, 21 Oct 2024 10:19:30 +0200 Subject: [PATCH] Apply review comment --- testcontainers/tests/async_runner.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/testcontainers/tests/async_runner.rs b/testcontainers/tests/async_runner.rs index 6a7c48c2..9d29a2ce 100644 --- a/testcontainers/tests/async_runner.rs +++ b/testcontainers/tests/async_runner.rs @@ -83,8 +83,7 @@ async fn start_containers_in_parallel() -> anyhow::Result<()> { // Make sure the image is already pulled, since otherwise pulling it may cause the deadline // below to be exceeded. - let run_pull = image.clone().start().await?; - drop(run_pull); + let _ = image.clone().pull_image().await?; let run_1 = image.clone().start(); let run_2 = image.clone().start();