From 3038b815847fba77ab04e69d98277a7860ffd742 Mon Sep 17 00:00:00 2001 From: Praveen Pandey Date: Sat, 5 Oct 2024 17:56:06 +0530 Subject: [PATCH] Fixing regression in case of secondary LPAR vios details not updated in flow Fixing regression in case of secondary LPAR vios details not updated in the flow Signed-off-by: Praveen K Pandey --- testcases/MachineConfig.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/testcases/MachineConfig.py b/testcases/MachineConfig.py index 4dfe35ab..26a263f2 100755 --- a/testcases/MachineConfig.py +++ b/testcases/MachineConfig.py @@ -88,7 +88,7 @@ def validate_secureboot_parameter(self, machine_config): return False def update_hmc_object(self, target_hmc_ip, target_hmc_username, - target_hmc_password, managed_system, lpar_name): + target_hmc_password, managed_system, lpar_name, lpar_vios): """ In case of multi lpar configuration here we are creating multiple objects[In sequence] as per lpar change. @@ -99,7 +99,8 @@ def update_hmc_object(self, target_hmc_ip, target_hmc_username, target_hmc_password, managed_system=managed_system, lpar_name=lpar_name, - lpar_prof=conf.args.lpar_prof + lpar_prof=conf.args.lpar_prof, + lpar_vios=conf.args.lpar_vios ) self.cv_HMC.set_system(conf.system())