diff --git a/test/test-manager/src/tests/dns.rs b/test/test-manager/src/tests/dns.rs index 35a2fcc91775..c90dd3c5e060 100644 --- a/test/test-manager/src/tests/dns.rs +++ b/test/test-manager/src/tests/dns.rs @@ -650,7 +650,6 @@ async fn connect_local_wg_relay(mullvad_client: &mut MullvadProxyClient) -> Resu allowed_ips: vec!["0.0.0.0/0".parse().unwrap()], endpoint: peer_addr, psk: None, - #[cfg(target_os = "linux")] constant_packet_size: false, }, ipv4_gateway: CUSTOM_TUN_GATEWAY, diff --git a/test/test-manager/src/tests/helpers.rs b/test/test-manager/src/tests/helpers.rs index 1ec0b38cb766..d6a59bd33c1b 100644 --- a/test/test-manager/src/tests/helpers.rs +++ b/test/test-manager/src/tests/helpers.rs @@ -517,7 +517,6 @@ pub fn unreachable_wireguard_tunnel() -> talpid_types::net::wireguard::Connectio ], endpoint: "1.3.3.7:1234".parse().unwrap(), psk: None, - #[cfg(target_os = "linux")] constant_packet_size: false, }, exit_peer: None, diff --git a/test/test-manager/src/tests/tunnel.rs b/test/test-manager/src/tests/tunnel.rs index 65f7a744c3c0..540f02802e31 100644 --- a/test/test-manager/src/tests/tunnel.rs +++ b/test/test-manager/src/tests/tunnel.rs @@ -10,9 +10,7 @@ use crate::{ tests::helpers::{login_with_retries, ConnChecker}, }; -#[cfg(not(target_os = "macos"))] -use anyhow::Context; -use anyhow::{bail, ensure}; +use anyhow::{bail, ensure, Context}; use mullvad_management_interface::MullvadProxyClient; use mullvad_relay_selector::query::builder::RelayQueryBuilder; use mullvad_types::{ @@ -408,8 +406,7 @@ pub async fn test_wireguard_autoconnect( /// # Limitations /// /// The test does not analyze any traffic, nor verify that DAITA is in use. -#[cfg(not(target_os = "macos"))] -#[test_function(target_os = "linux", target_os = "windows")] +#[test_function] pub async fn test_daita( _: TestContext, rpc: ServiceClient, diff --git a/test/test-manager/src/tests/tunnel_state.rs b/test/test-manager/src/tests/tunnel_state.rs index b04a71ba5ab2..5a94c60bc691 100644 --- a/test/test-manager/src/tests/tunnel_state.rs +++ b/test/test-manager/src/tests/tunnel_state.rs @@ -369,8 +369,7 @@ pub async fn test_connected_state( obfuscation: None, entry_endpoint: None, tunnel_interface: _, - #[cfg(target_os = "linux")] - daita: _, + daita: _, }, .. } => {