pull/2025/head
grossmj 3 years ago
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…
Cancel
Save