Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion google/genai/tests/client/test_http_options.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,11 @@ def test_patch_http_options_with_copies_all_fields():

for key in http_options_keys:
assert hasattr(patched, key)
if key not in ['httpx_client', 'httpx_async_client', 'aiohttp_client']:
if key not in [
'httpx_client',
'httpx_async_client',
'aiohttp_client',
]:
assert getattr(patched, key) is not None
assert patched.base_url == 'https://fake-url.com/'
assert patched.api_version == 'v1'
Expand Down