diff --git a/rust/relay/server/tests/ebpf_ipv4.rs b/rust/relay/server/tests/ebpf_ipv4.rs index 95d1aec51..5101c0ec4 100644 --- a/rust/relay/server/tests/ebpf_ipv4.rs +++ b/rust/relay/server/tests/ebpf_ipv4.rs @@ -18,8 +18,7 @@ async fn ping_pong() { let (_meter_provider, exporter) = init_meter_provider(); - let mut program = - firezone_relay::ebpf::Program::try_load("lo", ebpf::AttachMode::Generic).unwrap(); + let mut program = ebpf::Program::try_load("lo", ebpf::AttachMode::Generic).unwrap(); // Linux does not set the correct UDP checksum when sending the packet, so our updated checksum in the eBPF code will be wrong and later dropped. // To make the test work, we therefore need to tell the eBPF program to disable UDP checksumming by just setting it to 0.