Fix If cloud interface is down the project doesn't open

Fix https://github.com/GNS3/gns3-gui/issues/1751
This commit is contained in:
Julien Duponchelle
2017-01-11 17:23:36 +01:00
parent 69d8ed5636
commit 82c99418b4
4 changed files with 33 additions and 15 deletions

View File

@ -54,7 +54,7 @@ def test_cloud_get(http_compute, project, vm):
assert response.route == "/projects/{project_id}/cloud/nodes/{node_id}"
assert response.json["name"] == "Cloud 1"
assert response.json["project_id"] == project.id
assert response.json["status"] == "started"
assert response.json["status"] == "stopped"
def test_cloud_nio_create_udp(http_compute, vm):