From 603437e0dd363367d486d54172b0a54116f057ac Mon Sep 17 00:00:00 2001 From: andrussal Date: Tue, 17 Feb 2026 06:07:23 +0100 Subject: [PATCH] fix(local-deployer): allow single endpoint port registration --- testing-framework/deployers/local/src/node_control/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing-framework/deployers/local/src/node_control/mod.rs b/testing-framework/deployers/local/src/node_control/mod.rs index b0323c7..efa7d96 100644 --- a/testing-framework/deployers/local/src/node_control/mod.rs +++ b/testing-framework/deployers/local/src/node_control/mod.rs @@ -182,7 +182,7 @@ impl NodeManager { .collect() }; - if ports.len() <= 1 { + if ports.is_empty() { return Ok(()); }