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

No project for qemu binaries list

This commit is contained in:
Julien Duponchelle 2015-02-20 16:54:23 +01:00
parent 8aa5514890
commit 15036837bb
2 changed files with 2 additions and 5 deletions

View File

@ -262,10 +262,7 @@ class QEMUHandler:
@classmethod
@Route.get(
r"/projects/{project_id}/qemu/binaries",
parameters={
"project_id": "UUID for the project"
},
r"/qemu/binaries",
status_codes={
200: "Success",
400: "Invalid request",

View File

@ -161,7 +161,7 @@ def test_qemu_list_binaries(server, vm):
ret = [{"path": "/tmp/1", "version": "2.2.0"},
{"path": "/tmp/2", "version": "2.1.0"}]
with asyncio_patch("gns3server.modules.qemu.Qemu.binary_list", return_value=ret) as mock:
response = server.get("/projects/{project_id}/qemu/binaries".format(project_id=vm["project_id"]))
response = server.get("/qemu/binaries".format(project_id=vm["project_id"]))
assert mock.called
assert response.status == 200
assert response.json == ret