From 3bb1509f41535e424b2a8f1a6d869e1ff7d366bb Mon Sep 17 00:00:00 2001 From: Julien Duponchelle Date: Thu, 25 Jun 2015 09:54:42 +0200 Subject: [PATCH] Fix the tests after the removal of the KVM flag from VM --- tests/modules/qemu/test_qemu_vm.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/tests/modules/qemu/test_qemu_vm.py b/tests/modules/qemu/test_qemu_vm.py index 82b5afa4..8daaa1a0 100644 --- a/tests/modules/qemu/test_qemu_vm.py +++ b/tests/modules/qemu/test_qemu_vm.py @@ -382,10 +382,3 @@ def test_options(vm): vm.options = "-usb" assert vm.options == "-usb" assert vm.kvm is False - - -def test_options_kvm(vm): - vm.kvm = False - vm.options = "-usb -enable-kvm" - assert vm.options == "-usb" - assert vm.kvm is True