diff --git a/instrumentation/opentelemetry-instrumentation-fastapi/tests/test_fastapi_instrumentation.py b/instrumentation/opentelemetry-instrumentation-fastapi/tests/test_fastapi_instrumentation.py index 245b3c6c98..f776ea2b91 100644 --- a/instrumentation/opentelemetry-instrumentation-fastapi/tests/test_fastapi_instrumentation.py +++ b/instrumentation/opentelemetry-instrumentation-fastapi/tests/test_fastapi_instrumentation.py @@ -204,7 +204,7 @@ async def _(param: str): @app.get("/healthzz") async def _(): return {"message": "ok"} - + @app.get("/error") async def _(): raise UnhandledException("This is an unhandled exception")