Skip to content

Commit 83ca1dc

Browse files
dinhngtuydirson
authored andcommitted
guest_tools/win: Fix type hints for test_xenclean
Signed-off-by: Tu Dinh <[email protected]>
1 parent 9f05a49 commit 83ca1dc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/guest_tools/win/test_xenclean.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import logging
22
from pathlib import PureWindowsPath
3-
from typing import Any, Dict
3+
from typing import Any, Dict, Tuple
44
import pytest
55
from lib.common import wait_for
66
from lib.vm import VM
@@ -48,7 +48,7 @@ def test_xenclean_with_test_tools(self, vm_install_test_tools_no_reboot: VM, gue
4848
run_xenclean(vm, guest_tools_iso)
4949
assert vm.are_windows_tools_uninstalled()
5050

51-
def test_xenclean_with_other_tools(self, vm_install_other_drivers: VM, guest_tools_iso):
51+
def test_xenclean_with_other_tools(self, vm_install_other_drivers: Tuple[VM, Dict], guest_tools_iso):
5252
vm, param = vm_install_other_drivers
5353
if param.get("vendor_device"):
5454
pytest.skip("Skipping XenClean with vendor device present")

0 commit comments

Comments
 (0)