Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
larseggert committed Sep 2, 2024
1 parent 4e5e6bd commit 03df47c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -270,8 +270,10 @@ mod test {
fn loopback_interface_mtu_v6() {
#[cfg(target_os = "macos")]
check_mtu("localhost:443", false, 16384);
#[cfg(not(target_os = "macos"))]
#[cfg(target_os = "linux")]
check_mtu("localhost:443", false, 65536);
#[cfg(target_os = "windows")]
check_mtu("localhost:443", false, 4294967295);
}

#[test]
Expand Down

0 comments on commit 03df47c

Please sign in to comment.