mirror of
https://github.com/kjuulh/dagger-rs.git
synced 2024-11-08 11:01:47 +01:00
fix: make sure tests have a command to execute
This commit is contained in:
parent
5593fce2e1
commit
1bfd084cd2
@ -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?;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user