Fix the tests after the removal of the KVM flag from VM

This commit is contained in:
Julien Duponchelle 2015-06-25 09:54:42 +02:00
parent 2b36746d52
commit 3bb1509f41

View File

@ -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