diff --git a/hydroflow_plus_test/examples/two_pc.rs b/hydroflow_plus_test/examples/two_pc.rs index 27758b098d8..96f0ffa641b 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 c7eff7e35d0..be5af24e6c5 100644 --- a/hydroflow_plus_test/src/cluster/simple_cluster.rs +++ b/hydroflow_plus_test/src/cluster/simple_cluster.rs @@ -88,7 +88,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 e29d1630118..133233fe4e7 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() {