Skip to content

Commit 2c052e9

Browse files
committed
Fix format
1 parent a69a137 commit 2c052e9

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

unit_tests/sources/streams/http/test_http_client.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -746,6 +746,7 @@ def test_given_different_headers_then_response_is_not_cached(requests_mock):
746746

747747
assert second_response.json()["test"] == "second response"
748748

749+
749750
@patch.dict("os.environ", {"REQUESTS_CA_BUNDLE": "/path/to/ca-bundle.crt"})
750751
def test_send_request_respects_environment_variables():
751752
"""Test that send_request respects REQUESTS_CA_BUNDLE environment variable."""
@@ -764,6 +765,7 @@ def test_send_request_respects_environment_variables():
764765
assert "verify" in passed_kwargs
765766
assert passed_kwargs["verify"] == "/path/to/ca-bundle.crt"
766767

768+
767769
@pytest.mark.usefixtures("mock_sleep")
768770
@pytest.mark.parametrize(
769771
"response_code, expected_failure_type, error_message, exception_class",

0 commit comments

Comments
 (0)