From 4079e4f1ad2d1472bf9da8bc1b5e4769876f6b60 Mon Sep 17 00:00:00 2001 From: Ruslan Mstoi Date: Tue, 20 Jun 2023 16:30:22 +0300 Subject: [PATCH] tests: Fix test_vfio test Test was failing due to regression caused by commit d5558aea2a4205564b00ee8796a8ab47879df337 Failing command: sudo /mnt/ch-remote --api-socket /tmp/ch_api.sock resize --memory=1073741824" Fixes #5190 Signed-off-by: Ruslan Mstoi --- tests/integration.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/integration.rs b/tests/integration.rs index 75374e905..51cd32913 100644 --- a/tests/integration.rs +++ b/tests/integration.rs @@ -4295,7 +4295,7 @@ mod common_parallel { .ssh_command_l1( "sudo /mnt/ch-remote \ --api-socket /tmp/ch_api.sock \ - resize --memory=1073741824", + resize --memory 1073741824", ) .unwrap(); assert!(guest.get_total_memory_l2().unwrap_or_default() > 960_000); @@ -8286,7 +8286,7 @@ mod vfio { .ssh_command_l1( "sudo /mnt/ch-remote \ --api-socket /tmp/ch_api.sock \ - resize --memory=1073741824", + resize --memory 1073741824", ) .unwrap(); assert!(guest.get_total_memory_l2().unwrap_or_default() > 960_000);