diff --git a/crates/integration_test/src/tests/cgroups/network.rs b/crates/integration_test/src/tests/cgroups/network.rs index 96df10bb..af8b23fb 100644 --- a/crates/integration_test/src/tests/cgroups/network.rs +++ b/crates/integration_test/src/tests/cgroups/network.rs @@ -67,7 +67,7 @@ fn get_network_interfaces() -> Option<(String, String)> { let lo_if_name = interfaces.get(0).map(|iface| &iface.name)?; let eth_if_name = interfaces.get(1).map(|iface| &iface.name)?; - return Some((lo_if_name.to_string(), eth_if_name.to_string())); + Some((lo_if_name.to_string(), eth_if_name.to_string())) } fn test_network_cgroups() -> TestResult {