From ec2056881352fe5e984832e75f1a69d63775e4c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CDee?= Date: Fri, 27 Sep 2024 16:05:44 -0700 Subject: [PATCH] change path to trybuildhost --- hydroflow_plus_test/examples/two_pc.rs | 2 +- hydroflow_plus_test/src/cluster/simple_cluster.rs | 2 +- hydroflow_plus_test/src/cluster/two_pc.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/hydroflow_plus_test/examples/two_pc.rs b/hydroflow_plus_test/examples/two_pc.rs index 27758b098d8d..96f0ffa641b0 100644 --- a/hydroflow_plus_test/examples/two_pc.rs +++ b/hydroflow_plus_test/examples/two_pc.rs @@ -1,5 +1,5 @@ use hydro_deploy::Deployment; -use hydroflow_plus_deploy::TrybuildHost; +use hydroflow_plus::deploy::TrybuildHost; #[tokio::main] async fn main() { diff --git a/hydroflow_plus_test/src/cluster/simple_cluster.rs b/hydroflow_plus_test/src/cluster/simple_cluster.rs index 69a33a85afc6..6691d0552cbb 100644 --- a/hydroflow_plus_test/src/cluster/simple_cluster.rs +++ b/hydroflow_plus_test/src/cluster/simple_cluster.rs @@ -90,7 +90,7 @@ mod tests { let (process1, process2) = super::decouple_process(&builder); let built = builder.with_default_optimize(); - let nodes = built + let _nodes = built .with_process(&process1, TrybuildHost::new(deployment.Localhost())) .with_process(&process2, TrybuildHost::new(deployment.Localhost())) .deploy(&mut deployment); diff --git a/hydroflow_plus_test/src/cluster/two_pc.rs b/hydroflow_plus_test/src/cluster/two_pc.rs index e29d1630118b..133233fe4e7b 100644 --- a/hydroflow_plus_test/src/cluster/two_pc.rs +++ b/hydroflow_plus_test/src/cluster/two_pc.rs @@ -91,7 +91,7 @@ pub fn two_pc( #[cfg(test)] mod tests { use hydro_deploy::Deployment; - use hydroflow_plus_deploy::{DeployCrateWrapper, TrybuildHost}; + use hydroflow_plus::deploy::TrybuildHost; #[tokio::test] async fn two_pc() {