Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ocelotl committed Aug 1, 2024
1 parent 329bfe5 commit 813d737
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1424,11 +1424,11 @@ class TestHTTPAppWithCustomHeadersParameters(TestBase):
def setUp(self):
super().setUp()
self.instrumentor = otel_fastapi.FastAPIInstrumentor()
self.kwargs = dict(
http_capture_headers_server_request=["a.*", "b.*"],
http_capture_headers_server_response=["c.*", "d.*"],
http_capture_headers_sanitize_fields=[".*secret.*"],
)
self.kwargs = {
"http_capture_headers_server_request": ["a.*", "b.*"],
"http_capture_headers_server_response": ["c.*", "d.*"],
"http_capture_headers_sanitize_fields": [".*secret.*"],
}
self.app = None

def tearDown(self) -> None:
Expand Down

0 comments on commit 813d737

Please sign in to comment.