From 42e084dcd94d1710121c22a837419e1bc91d5ddf Mon Sep 17 00:00:00 2001 From: Norberto Arrieta Date: Thu, 15 Jun 2023 10:06:09 -0700 Subject: [PATCH] Fix method name in update test (#2845) Co-authored-by: narrieta --- 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