1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-11-28 11:18:11 +00:00

Fix crash in tests

This commit is contained in:
Julien Duponchelle 2016-10-25 12:13:42 +02:00
parent 4fe293f1d5
commit f8cba8cd50
No known key found for this signature in database
GPG Key ID: CE8B29639E07F5E8

View File

@ -416,7 +416,7 @@ def test_stop_vm(controller, async_run):
"engine": "vmware",
"when_exit": "stop"
}
controller.gns3vm._current_engine().running = True
controller.gns3vm.current_engine().running = True
with asyncio_patch("gns3server.controller.gns3vm.vmware_gns3_vm.VMwareGNS3VM.stop") as mock:
async_run(controller.stop())
assert mock.called
@ -431,7 +431,7 @@ def test_suspend_vm(controller, async_run):
"engine": "vmware",
"when_exit": "suspend"
}
controller.gns3vm._current_engine().running = True
controller.gns3vm.current_engine().running = True
with asyncio_patch("gns3server.controller.gns3vm.vmware_gns3_vm.VMwareGNS3VM.suspend") as mock:
async_run(controller.stop())
assert mock.called
@ -446,7 +446,7 @@ def test_keep_vm(controller, async_run):
"engine": "vmware",
"when_exit": "keep"
}
controller.gns3vm._current_engine().running = True
controller.gns3vm.current_engine().running = True
with asyncio_patch("gns3server.controller.gns3vm.vmware_gns3_vm.VMwareGNS3VM.suspend") as mock:
async_run(controller.stop())
assert not mock.called