From f8468813c3f2bb3bbb79719f5df5a00d4067f64d Mon Sep 17 00:00:00 2001 From: Thomas Eizinger Date: Wed, 10 Jul 2024 00:11:46 +1000 Subject: [PATCH] test(tunnel): use hex notation for IPv6 network (#5808) --- rust/connlib/tunnel/src/tests/sim_node.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/connlib/tunnel/src/tests/sim_node.rs b/rust/connlib/tunnel/src/tests/sim_node.rs index 8068324af..a2cd087aa 100644 --- a/rust/connlib/tunnel/src/tests/sim_node.rs +++ b/rust/connlib/tunnel/src/tests/sim_node.rs @@ -168,7 +168,7 @@ pub(crate) fn tunnel_ip4s() -> impl Iterator { /// /// See . pub(crate) fn tunnel_ip6s() -> impl Iterator { - Ipv6Network::new(Ipv6Addr::new(64_768, 8_225, 4_369, 0, 0, 0, 0, 0), 107) + Ipv6Network::new(Ipv6Addr::new(0xfd00, 0x2021, 0x1111, 0, 0, 0, 0, 0), 107) .unwrap() .subnets_with_prefix(128) .map(|n| n.network_address())