From f6568042ce530d3a46ba267cd00ba2d7e7220075 Mon Sep 17 00:00:00 2001 From: Wei Liu Date: Wed, 23 Jul 2025 18:51:22 +0000 Subject: [PATCH] tests: Fix an error message in VHDX expansion test The VHDX image is generated directly, not converted from a RAW image. Signed-off-by: Wei Liu --- tests/integration.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration.rs b/tests/integration.rs index 49eb6f003..da2d5029c 100644 --- a/tests/integration.rs +++ b/tests/integration.rs @@ -3402,7 +3402,7 @@ mod common_parallel { .arg(vhdx_path) .arg(VIRTUAL_DISK_SIZE.to_string()) .output() - .expect("Expect generating dynamic VHDx image from RAW image"); + .expect("Expect generating dynamic VHDX image"); // Check if the size matches with empty VHDx file size assert_eq!(vhdx_image_size(vhdx_path), EMPTY_VHDX_FILE_SIZE);