From 78fbceecf9ca270410645d31f2faff87c433182e Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Thu, 25 Jul 2024 15:19:28 +0200 Subject: [PATCH] Remove now unused tarpaulin cfgs --- quinn/src/tests.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/quinn/src/tests.rs b/quinn/src/tests.rs index 90cff9e1a..670d9a4fa 100755 --- a/quinn/src/tests.rs +++ b/quinn/src/tests.rs @@ -418,7 +418,6 @@ fn echo_dualstack() { } #[test] -#[cfg(not(tarpaulin))] fn stress_receive_window() { run_echo(EchoArgs { client_addr: SocketAddr::new(IpAddr::V4(Ipv4Addr::UNSPECIFIED), 0), @@ -431,7 +430,6 @@ fn stress_receive_window() { } #[test] -#[cfg(not(tarpaulin))] fn stress_stream_receive_window() { // Note that there is no point in running this with too many streams, // since the window is only active within a stream. @@ -446,7 +444,6 @@ fn stress_stream_receive_window() { } #[test] -#[cfg(not(tarpaulin))] fn stress_both_windows() { run_echo(EchoArgs { client_addr: SocketAddr::new(IpAddr::V4(Ipv4Addr::UNSPECIFIED), 0),