Skip to content

Commit

Permalink
Remove extra braces.
Browse files Browse the repository at this point in the history
  • Loading branch information
jimf5 committed Dec 14, 2024
1 parent da9cc70 commit e363140
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_otel.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ def test_response_and_span_attributes(
f"niquests/{niquests.__version__}"
)
assert get_attr(span, "http.request_content_length") == 0
assert get_attr(span, "http.response_content_length") == (len(r.text))
assert get_attr(span, "http.response_content_length") == len(r.text)
assert get_attr(span, "http.status_code") == status
assert get_attr(span, "net.host.name") == "localhost"
assert get_attr(span, "net.host.port") == port
Expand Down

0 comments on commit e363140

Please sign in to comment.