From d9f1136f228813fcf65e145b4d504e1496e7ead3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20L=C3=B6nnhager?= Date: Mon, 11 Nov 2024 14:48:10 +0100 Subject: [PATCH] fixup: test params --- talpid-wireguard/src/connectivity_check.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/talpid-wireguard/src/connectivity_check.rs b/talpid-wireguard/src/connectivity_check.rs index 608002d1a611..ed9939efef04 100644 --- a/talpid-wireguard/src/connectivity_check.rs +++ b/talpid-wireguard/src/connectivity_check.rs @@ -617,7 +617,10 @@ mod test { } #[cfg(daita)] - fn start_daita(&mut self) -> std::result::Result<(), TunnelError> { + fn start_daita( + &mut self, + #[cfg(not(target_os = "windows"))] _: talpid_tunnel_config_client::DaitaSettings, + ) -> std::result::Result<(), TunnelError> { Ok(()) } }