We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8a893b commit eedb718Copy full SHA for eedb718
tests/client/test_jsonrpc_client.py
@@ -200,8 +200,8 @@ async def test_get_agent_card_success_with_specified_path_for_extended_card(
200
http_kwargs=auth_kwargs,
201
)
202
203
- expected_extended_url = '{}/{}'.format(
204
- self.BASE_URL, self.EXTENDED_AGENT_CARD_PATH.lstrip('/')
+ expected_extended_url = (
+ f'{self.BASE_URL}/{self.EXTENDED_AGENT_CARD_PATH.lstrip("/")}'
205
206
mock_httpx_client.get.assert_called_once_with(
207
expected_extended_url, **auth_kwargs
0 commit comments