Skip to content

Commit

Permalink
remove non-required multi inheritance
Browse files Browse the repository at this point in the history
  • Loading branch information
dhofstetter committed Jun 28, 2024
1 parent da53aca commit 6582ded
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ def test_sub_app_fastapi_call(self):
)


class TestFastAPIManualInstrumentation(TestBaseManualFastAPI, TestBase):
class TestFastAPIManualInstrumentation(TestBaseManualFastAPI):
def test_instrument_app_with_instrument(self):
if not isinstance(self, TestAutoInstrumentation):
self._instrumentor.instrument()
Expand Down Expand Up @@ -499,7 +499,7 @@ async def _():
return app


class TestFastAPIManualInstrumentationHooks(TestBaseManualFastAPI, TestBase):
class TestFastAPIManualInstrumentationHooks(TestBaseManualFastAPI):
_server_request_hook = None
_client_request_hook = None
_client_response_hook = None
Expand Down Expand Up @@ -549,7 +549,7 @@ def client_response_hook(send_span, scope, message):
)


class TestAutoInstrumentation(TestBaseAutoFastAPI, TestBase):
class TestAutoInstrumentation(TestBaseAutoFastAPI):
"""Test the auto-instrumented variant
Extending the manual instrumentation as most test cases apply
Expand Down Expand Up @@ -663,7 +663,7 @@ def test_sub_app_fastapi_call(self):
)


class TestAutoInstrumentationHooks(TestBaseAutoFastAPI, TestBase):
class TestAutoInstrumentationHooks(TestBaseAutoFastAPI):
"""
Test the auto-instrumented variant for request and response hooks
Expand Down

0 comments on commit 6582ded

Please sign in to comment.