mirror of
https://github.com/GNS3/gns3-server
synced 2024-12-25 16:28:11 +00:00
Fix tests
This commit is contained in:
parent
05d2579907
commit
16fcf6141e
@ -182,7 +182,7 @@ class TemplatesService:
|
||||
|
||||
image = await self._templates_repo.get_image(image_path)
|
||||
if not image:
|
||||
raise ControllerNotFoundError(f"Image '{image.filename}' could not be found in the controller database")
|
||||
raise ControllerNotFoundError(f"Image '{image_path}' could not be found in the controller database")
|
||||
if not os.path.exists(image.path):
|
||||
raise ControllerNotFoundError(f"Image '{image.path}' could not be found on disk")
|
||||
return image
|
||||
|
@ -273,7 +273,7 @@ class TestImageRoutes:
|
||||
image_data = f.read()
|
||||
response = await client.post(
|
||||
app.url_path_for("upload_image", image_path=image_name),
|
||||
params={"image_type": "qemu"},
|
||||
params={"image_type": "qemu", "install_appliances": "true"},
|
||||
content=image_data)
|
||||
assert response.status_code == status.HTTP_201_CREATED
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user