Skip to content

Commit 74b41cc

Browse files
authored
Update automatic formatting (#417)
1 parent acf7a39 commit 74b41cc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/test_client.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -95,9 +95,9 @@ def test_custom_headers_are_applied():
9595

9696
def mock_send(request):
9797
assert "User-Agent" in request.headers, "Custom header not found in request"
98-
assert (
99-
request.headers["User-Agent"] == "my-custom-user-agent/1.0"
100-
), "Custom header value is incorrect"
98+
assert request.headers["User-Agent"] == "my-custom-user-agent/1.0", (
99+
"Custom header value is incorrect"
100+
)
101101
return httpx.Response(401, json={})
102102

103103
mock_send_wrapper = mock.Mock(side_effect=mock_send)

0 commit comments

Comments
 (0)