Skip to content

Commit

Permalink
Dividers
Browse files Browse the repository at this point in the history
  • Loading branch information
larseggert committed Sep 2, 2024
1 parent 7feca16 commit 0605112
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -263,19 +263,19 @@ mod test {
#[cfg(target_os = "macos")]
check_mtu("localhost:443", true, 16384);
#[cfg(target_os = "linux")]
check_mtu("localhost:443", false, 65536);
check_mtu("localhost:443", false, 65_536);
#[cfg(target_os = "windows")]
check_mtu("localhost:443", false, 4294967295);
check_mtu("localhost:443", false, 4_294_967_295);
}

#[test]
fn loopback_interface_mtu_v6() {
#[cfg(target_os = "macos")]
check_mtu("localhost:443", false, 16384);
#[cfg(target_os = "linux")]
check_mtu("localhost:443", false, 65536);
check_mtu("localhost:443", false, 65_536);
#[cfg(target_os = "windows")]
check_mtu("localhost:443", false, 4294967295);
check_mtu("localhost:443", false, 4_294_967_295);
}

#[test]
Expand Down

0 comments on commit 0605112

Please sign in to comment.