From ea9443731551364bc69b2f311a68f4a7fab47d2e Mon Sep 17 00:00:00 2001 From: Binarybaron Date: Wed, 19 Nov 2025 19:12:37 +0100 Subject: [PATCH] fix: tests/spec.rs --- swap-orchestrator/tests/spec.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/swap-orchestrator/tests/spec.rs b/swap-orchestrator/tests/spec.rs index 3f625826..e1ca334d 100644 --- a/swap-orchestrator/tests/spec.rs +++ b/swap-orchestrator/tests/spec.rs @@ -12,6 +12,7 @@ fn test_orchestrator_spec_generation() { bitcoind_rpc: 18332, bitcoind_p2p: 18333, electrs: 60001, + tor_socks: 9050, asb_libp2p: 9839, asb_rpc_port: 9944, rendezvous_node_port: 8888, @@ -24,6 +25,7 @@ fn test_orchestrator_spec_generation() { monerod: OrchestratorImage::Registry(images::MONEROD_IMAGE.to_string()), electrs: OrchestratorImage::Registry(images::ELECTRS_IMAGE.to_string()), bitcoind: OrchestratorImage::Registry(images::BITCOIND_IMAGE.to_string()), + tor: OrchestratorImage::Registry(images::TOR_IMAGE.to_string()), rendezvous_node: OrchestratorImage::Build( images::RENDEZVOUS_NODE_IMAGE_FROM_SOURCE.clone(), ), @@ -38,6 +40,7 @@ fn test_orchestrator_spec_generation() { directories: OrchestratorDirectories { asb_data_dir: std::path::PathBuf::from(swap_orchestrator::compose::ASB_DATA_DIR), }, + want_tor: false, }; let spec = input.to_spec();