Skip to content

Commit 37c5cdc

Browse files
committed
Fix test
1 parent 23de52c commit 37c5cdc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

instrumentation/opentelemetry-instrumentation-django/tests/test_middleware.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1055,9 +1055,9 @@ def test_wsgi_request_handles_extraction_error(self):
10551055
"http.request.header.test_wsgirequest_header": [mock_wsgi_request]
10561056
}
10571057
expected_attributes = {
1058-
"http.request.header.test_wsgirequest_header": str(
1059-
mock_wsgi_request
1060-
)
1058+
"http.request.header.test_wsgirequest_header": [
1059+
str(mock_wsgi_request)
1060+
]
10611061
}
10621062

10631063
formatted_attributes = (

0 commit comments

Comments
 (0)