@@ -259,7 +259,7 @@ def test_sub_app_fastapi_call(self):
259
259
)
260
260
261
261
262
- class TestFastAPIManualInstrumentation (TestBaseManualFastAPI , TestBase ):
262
+ class TestFastAPIManualInstrumentation (TestBaseManualFastAPI ):
263
263
def test_instrument_app_with_instrument (self ):
264
264
if not isinstance (self , TestAutoInstrumentation ):
265
265
self ._instrumentor .instrument ()
@@ -499,7 +499,7 @@ async def _():
499
499
return app
500
500
501
501
502
- class TestFastAPIManualInstrumentationHooks (TestBaseManualFastAPI , TestBase ):
502
+ class TestFastAPIManualInstrumentationHooks (TestBaseManualFastAPI ):
503
503
_server_request_hook = None
504
504
_client_request_hook = None
505
505
_client_response_hook = None
@@ -549,7 +549,7 @@ def client_response_hook(send_span, scope, message):
549
549
)
550
550
551
551
552
- class TestAutoInstrumentation (TestBaseAutoFastAPI , TestBase ):
552
+ class TestAutoInstrumentation (TestBaseAutoFastAPI ):
553
553
"""Test the auto-instrumented variant
554
554
555
555
Extending the manual instrumentation as most test cases apply
@@ -663,7 +663,7 @@ def test_sub_app_fastapi_call(self):
663
663
)
664
664
665
665
666
- class TestAutoInstrumentationHooks (TestBaseAutoFastAPI , TestBase ):
666
+ class TestAutoInstrumentationHooks (TestBaseAutoFastAPI ):
667
667
"""
668
668
Test the auto-instrumented variant for request and response hooks
669
669
0 commit comments