1
0
mirror of https://github.com/GNS3/gns3-server synced 2025-01-16 02:51:00 +00:00

Fix GNS3 VM start test.

This commit is contained in:
grossmj 2017-12-05 20:30:28 -06:00
parent dde2003168
commit e3b3427cc6

View File

@ -388,7 +388,7 @@ def test_start_vm(controller, async_run):
"vmname": "GNS3 VM"
}
with asyncio_patch("gns3server.controller.gns3vm.vmware_gns3_vm.VMwareGNS3VM.start") as mock:
with asyncio_patch("gns3server.controller.gns3vm.vmware_gns3_vm.VMwareGNS3VM._check_network") as mock_check_network:
with asyncio_patch("gns3server.controller.gns3vm.GNS3VM._check_network") as mock_check_network:
with asyncio_patch("gns3server.controller.compute.Compute.connect") as mock_connect:
async_run(controller.start())
assert mock.called