From ead200b4d9b67e5b07c76f92527decdc33cab9d4 Mon Sep 17 00:00:00 2001 From: jiaxiao zhou Date: Tue, 14 Nov 2023 02:24:32 +0000 Subject: [PATCH] fix(spin-test): change output to spawn to unblock Signed-off-by: jiaxiao zhou --- tests/src/integration_test.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/src/integration_test.rs b/tests/src/integration_test.rs index 9dd4a03..53fb64f 100644 --- a/tests/src/integration_test.rs +++ b/tests/src/integration_test.rs @@ -174,8 +174,7 @@ mod test { .arg("port-forward") .arg("redis") .arg(format!("{}:{}", forward_port, redis_port)) - .output() - .await?; + .spawn()?; tokio::time::sleep(tokio::time::Duration::from_secs(2)).await; Ok(()) }