Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
undoing a fstring
  • Loading branch information
holtskinner committed Aug 21, 2025
commit eedb71835637ad882ec22af5cfaeb07d16f309a3
4 changes: 2 additions & 2 deletions tests/client/test_jsonrpc_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,8 +200,8 @@ async def test_get_agent_card_success_with_specified_path_for_extended_card(
http_kwargs=auth_kwargs,
)

expected_extended_url = '{}/{}'.format(
self.BASE_URL, self.EXTENDED_AGENT_CARD_PATH.lstrip('/')
expected_extended_url = (
f'{self.BASE_URL}/{self.EXTENDED_AGENT_CARD_PATH.lstrip("/")}'
)
mock_httpx_client.get.assert_called_once_with(
expected_extended_url, **auth_kwargs
Expand Down
Loading