From 47ee13d1b277760f6c081b5d1dff25716b1d87db Mon Sep 17 00:00:00 2001 From: Harmin Parra Rueda Date: Sat, 15 Feb 2025 01:13:00 +0100 Subject: [PATCH] fix SVG mime type --- allure-python-commons/src/types.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/allure-python-commons/src/types.py b/allure-python-commons/src/types.py index 06b77dfa..e631e427 100644 --- a/allure-python-commons/src/types.py +++ b/allure-python-commons/src/types.py @@ -53,7 +53,7 @@ def __init__(self, mime_type, extension): PNG = ("image/png", "png") JPG = ("image/jpg", "jpg") - SVG = ("image/svg-xml", "svg") + SVG = ("image/svg+xml", "svg") GIF = ("image/gif", "gif") BMP = ("image/bmp", "bmp") TIFF = ("image/tiff", "tiff")