Fixed VM Snapshot Extension test failure - Expected <10> to be less than <10>, but was not (#3503)

* removed redundant count increment

* Updated count

* Updated code
This commit is contained in:
vipunj 2024-11-14 18:52:31 +05:30 коммит произвёл GitHub
Родитель a8affe467d
Коммит 6c43900023
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -235,7 +235,7 @@ class VmSnapsotLinuxBVTExtension(TestSuite):
rpc_status = response.provisioning_state
assert_that(rpc_status, "RPC creation failed").is_equal_to("Succeeded")
count = 0
for count in range(10):
for _ in range(10):
try:
# create a restore point for the VM
restore_point = "rp_" + datetime.now().strftime("%Y-%m-%d-%H-%M-%S")
@ -265,7 +265,7 @@ class VmSnapsotLinuxBVTExtension(TestSuite):
else:
raise e
time.sleep(1)
count = count + 1
count += 1
assert_that(count, "Restore point creation failed.").is_less_than(10)
def _find_extension_dir(self, node: Node) -> str: