From 1bfd084cd28e2b984c61de7f3f9a065cc41be007 Mon Sep 17 00:00:00 2001 From: kjuulh Date: Mon, 13 Mar 2023 20:59:25 +0100 Subject: [PATCH] fix: make sure tests have a command to execute --- crates/dagger-sdk/tests/issues/iss_30.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crates/dagger-sdk/tests/issues/iss_30.rs b/crates/dagger-sdk/tests/issues/iss_30.rs index fd2ae0c..a66e419 100644 --- a/crates/dagger-sdk/tests/issues/iss_30.rs +++ b/crates/dagger-sdk/tests/issues/iss_30.rs @@ -13,6 +13,7 @@ async fn test_issue_30_alt() -> eyre::Result<()> { platform: Some(platform.to_string().into()), }) .from("alpine") + .with_exec(vec!["echo", "'hello'"]) .exit_code() .await?; @@ -35,6 +36,7 @@ async fn test_issue_30() -> eyre::Result<()> { .unwrap(), ) .from("alpine") + .with_exec(vec!["echo", "'hello'"]) .exit_code() .await?;