From 1c5a326d01edf41d9cbbb694653ea182576ea3fc Mon Sep 17 00:00:00 2001 From: narrieta Date: Thu, 15 Jun 2023 07:26:12 -0700 Subject: [PATCH] Fix method name in update test --- tests_e2e/tests/agent_update/rsm_update.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests_e2e/tests/agent_update/rsm_update.py b/tests_e2e/tests/agent_update/rsm_update.py index cfa1a7d18b..05112fc19b 100644 --- a/tests_e2e/tests/agent_update/rsm_update.py +++ b/tests_e2e/tests/agent_update/rsm_update.py @@ -114,7 +114,7 @@ def _prepare_agent(self) -> None: @staticmethod def _verify_agent_update_flag_enabled(vm: VirtualMachineClient) -> bool: - result: VirtualMachine = vm.get_description() + result: VirtualMachine = vm.get_model() flag: bool = result.os_profile.linux_configuration.enable_vm_agent_platform_updates if flag is None: return False