From 5593fce2e16e0aa97a2e6843f15d3bb1121048f5 Mon Sep 17 00:00:00 2001 From: kjuulh Date: Mon, 13 Mar 2023 20:47:23 +0100 Subject: [PATCH] fix: remove unused imports --- crates/dagger-sdk/tests/issues/iss_30.rs | 20 +------------------- 1 file changed, 1 insertion(+), 19 deletions(-) diff --git a/crates/dagger-sdk/tests/issues/iss_30.rs b/crates/dagger-sdk/tests/issues/iss_30.rs index 1d8515e..fd2ae0c 100644 --- a/crates/dagger-sdk/tests/issues/iss_30.rs +++ b/crates/dagger-sdk/tests/issues/iss_30.rs @@ -1,6 +1,4 @@ -use dagger_sdk::{ - ContainerBuildOptsBuilder, HostDirectoryOpts, QueryContainerOpts, QueryContainerOptsBuilder, -}; +use dagger_sdk::{QueryContainerOpts, QueryContainerOptsBuilder}; static PLATFORMS: [&str; 2] = ["linux/arm64", "linux/x86_64"]; @@ -8,14 +6,6 @@ static PLATFORMS: [&str; 2] = ["linux/arm64", "linux/x86_64"]; async fn test_issue_30_alt() -> eyre::Result<()> { let client = dagger_sdk::connect().await?; - let context = client.host().directory_opts( - ".", - HostDirectoryOpts { - exclude: Some(vec!["target", "client/node_modules", "client/build"]), - include: None, - }, - ); - for platform in PLATFORMS { let ref_ = client .container_opts(QueryContainerOpts { @@ -36,14 +26,6 @@ async fn test_issue_30_alt() -> eyre::Result<()> { async fn test_issue_30() -> eyre::Result<()> { let client = dagger_sdk::connect().await?; - let context = client.host().directory_opts( - ".", - HostDirectoryOpts { - exclude: Some(vec!["target", "client/node_modules", "client/build"]), - include: None, - }, - ); - for platform in PLATFORMS { let ref_ = client .container_opts(