From a070b7873b56ac968493dae1479020c7b0853da3 Mon Sep 17 00:00:00 2001 From: Amy Wu Date: Tue, 27 Jan 2026 15:04:26 -0800 Subject: [PATCH] chore: internal change PiperOrigin-RevId: 861902337 --- google/genai/tests/client/test_http_options.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/google/genai/tests/client/test_http_options.py b/google/genai/tests/client/test_http_options.py index df1fd0063..e27808142 100644 --- a/google/genai/tests/client/test_http_options.py +++ b/google/genai/tests/client/test_http_options.py @@ -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'