From 915e67eb6e92b35dbb4cac916f2bd292afb8efc0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?dni=20=E2=9A=A1?= Date: Thu, 5 Sep 2024 08:25:38 +0200 Subject: [PATCH] bad request instead of internal error --- tests/api/test_webpush_api.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/api/test_webpush_api.py b/tests/api/test_webpush_api.py index 36cc7c750..fd3afff4f 100644 --- a/tests/api/test_webpush_api.py +++ b/tests/api/test_webpush_api.py @@ -20,7 +20,7 @@ async def test_create___missing_fields(client, adminkey_headers_from): headers=adminkey_headers_from, json={"subscription": """{"a": "x"}"""}, ) - assert response.status_code == HTTPStatus.INTERNAL_SERVER_ERROR + assert response.status_code == HTTPStatus.BAD_REQUEST @pytest.mark.asyncio @@ -49,7 +49,7 @@ async def test_delete__no_endpoint_param(client, adminkey_headers_from): "/api/v1/webpush", headers=adminkey_headers_from, ) - assert response.status_code == HTTPStatus.INTERNAL_SERVER_ERROR + assert response.status_code == HTTPStatus.BAD_REQUEST @pytest.mark.asyncio