diff --git a/rust/connlib/tunnel/src/device_channel/tun_windows.rs b/rust/connlib/tunnel/src/device_channel/tun_windows.rs index d6358e510..6435dc2cb 100644 --- a/rust/connlib/tunnel/src/device_channel/tun_windows.rs +++ b/rust/connlib/tunnel/src/device_channel/tun_windows.rs @@ -344,8 +344,8 @@ mod tests { #[test] #[ignore = "Needs admin privileges"] fn resource_management() { - // Each cycle takes about half a second, so this will need over a minute to run. - for _ in 0..150 { + // Each cycle takes about half a second, so this will take a fair bit to run. + for _ in 0..50 { let _tun = Tun::new().unwrap(); // This will panic if we don't correctly clean-up the wintun interface. } }