From bbe37c4fd2a4f3b968b46d2ce3e9201b8f8ebf7b Mon Sep 17 00:00:00 2001 From: Stan Grams Date: Mon, 23 Feb 2026 12:39:52 +0100 Subject: [PATCH] [test](trx-client): update port assertions for 4530/4531 defaults Co-authored-by: Claude Sonnet 4.6 Signed-off-by: Stan Grams --- src/trx-client/src/config.rs | 2 +- src/trx-client/src/remote_client.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/trx-client/src/config.rs b/src/trx-client/src/config.rs index 85c046b..d3498c9 100644 --- a/src/trx-client/src/config.rs +++ b/src/trx-client/src/config.rs @@ -480,7 +480,7 @@ mod tests { assert!(config.remote.url.is_none()); assert_eq!(config.remote.poll_interval_ms, 750); assert!(config.frontends.audio.enabled); - assert_eq!(config.frontends.audio.server_port, 4533); + assert_eq!(config.frontends.audio.server_port, 4531); assert!(!config.frontends.audio.bridge.enabled); assert_eq!(config.frontends.audio.bridge.rx_gain, 1.0); assert_eq!(config.frontends.audio.bridge.tx_gain, 1.0); diff --git a/src/trx-client/src/remote_client.rs b/src/trx-client/src/remote_client.rs index 89f83c7..35b0dbc 100644 --- a/src/trx-client/src/remote_client.rs +++ b/src/trx-client/src/remote_client.rs @@ -329,7 +329,7 @@ mod tests { parsed, RemoteEndpoint { host: "example.local".to_string(), - port: 4532 + port: 4530 } ); }