diff --git a/7project/backend/tests/test_integration_app.py b/7project/backend/tests/test_integration_app.py index 5d290aa..c924e25 100644 --- a/7project/backend/tests/test_integration_app.py +++ b/7project/backend/tests/test_integration_app.py @@ -14,11 +14,6 @@ def test_authenticated_route_requires_auth(client): assert resp.status_code in (status.HTTP_401_UNAUTHORIZED, status.HTTP_403_FORBIDDEN) -def test_sentry_debug_raises_exception(client): - with pytest.raises(ZeroDivisionError): - client.get("/sentry-debug") - - @pytest.mark.asyncio async def test_create_and_get_category(fastapi_app, test_user): # Use AsyncClient for async tests