From 0605112894b2aa4a06a4de2e543b49707c9cfb3e Mon Sep 17 00:00:00 2001 From: Lars Eggert Date: Mon, 2 Sep 2024 13:02:11 +0300 Subject: [PATCH] Dividers --- src/lib.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index c7c1c93..4af7c4a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -263,9 +263,9 @@ 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] @@ -273,9 +273,9 @@ mod test { #[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]