diff --git a/tests/modules/qemu/test_qemu_vm.py b/tests/modules/qemu/test_qemu_vm.py index ef9734dd6..246a3d8cc 100644 --- a/tests/modules/qemu/test_qemu_vm.py +++ b/tests/modules/qemu/test_qemu_vm.py @@ -329,7 +329,6 @@ def test_control_vm_expect_text(vm, loop, running_subprocess_mock): def test_build_command(vm, loop, fake_qemu_binary, port_manager): os.environ["DISPLAY"] = "0:0" - vm.kvm = False with asyncio_patch("asyncio.create_subprocess_exec", return_value=MagicMock()) as process: cmd = loop.run_until_complete(asyncio.async(vm._build_command())) assert cmd == [ @@ -349,17 +348,6 @@ def test_build_command(vm, loop, fake_qemu_binary, port_manager): ] -def test_build_command_with_kvm(vm, loop, fake_qemu_binary): - - vm.kvm = True - with asyncio_patch("asyncio.create_subprocess_exec", return_value=MagicMock()) as process: - cmd = loop.run_until_complete(asyncio.async(vm._build_command())) - if sys.platform.startswith("linux"): - assert "-enable-kvm" in cmd - else: - assert "-enable-kvm" not in cmd - - @pytest.mark.skipif(sys.platform.startswith("win"), reason="Not supported on Windows") def test_build_command_without_display(vm, loop, fake_qemu_binary):