Skip to content

Commit 13191c7

Browse files
committed
fix
1 parent 317eed0 commit 13191c7

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

tests/core/test_base_client.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -481,7 +481,9 @@ def test_auth_singleton_reuses_instance(self, llmgw_env_vars):
481481
class TestPlatformSettings:
482482
"""Tests for PlatformSettings."""
483483

484-
def test_build_base_url_passthrough(self, platform_env_vars, mock_platform_auth, passthrough_api_config):
484+
def test_build_base_url_passthrough(
485+
self, platform_env_vars, mock_platform_auth, passthrough_api_config
486+
):
485487
"""Test build_base_url for passthrough mode."""
486488
with patch.dict(os.environ, platform_env_vars, clear=True):
487489
settings = PlatformSettings()
@@ -491,7 +493,9 @@ def test_build_base_url_passthrough(self, platform_env_vars, mock_platform_auth,
491493
)
492494
assert "agenthub_/llm/raw/vendor/openai/model/gpt-4o/completions" in url
493495

494-
def test_build_base_url_normalized(self, platform_env_vars, mock_platform_auth, normalized_api_config):
496+
def test_build_base_url_normalized(
497+
self, platform_env_vars, mock_platform_auth, normalized_api_config
498+
):
495499
"""Test build_base_url for normalized mode."""
496500
with patch.dict(os.environ, platform_env_vars, clear=True):
497501
settings = PlatformSettings()

0 commit comments

Comments
 (0)