From b41927dbcc190ee731e302d59f884884f4bdcb35 Mon Sep 17 00:00:00 2001 From: Muminul Islam Date: Sun, 22 Feb 2026 23:23:53 -0800 Subject: [PATCH] tests: cvm: remove unused GuestAddress import Drop an unused vm_memory::GuestAddress import from common_cvm in integration tests to keep the module clean. Signed-off-by: Muminul Islam --- cloud-hypervisor/tests/integration.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cloud-hypervisor/tests/integration.rs b/cloud-hypervisor/tests/integration.rs index 0b5b74371..5afc6da8e 100644 --- a/cloud-hypervisor/tests/integration.rs +++ b/cloud-hypervisor/tests/integration.rs @@ -14432,9 +14432,8 @@ mod fw_cfg { #[cfg(all(feature = "sev_snp", target_arch = "x86_64"))] mod common_cvm { - use vm_memory::GuestAddress; - use crate::*; + #[test] fn test_focal_simple_launch() { let disk_config = UbuntuDiskConfig::new(FOCAL_IMAGE_NAME.to_string());