Skip to content

Commit c73080d

Browse files
committed
Update test_jsonrpc_client.py
Fix merge conflicts when merging from main
1 parent 8adba29 commit c73080d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/client/test_jsonrpc_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,10 +148,10 @@ async def test_init_strips_slashes(self, mock_httpx_client: AsyncMock):
148148
resolver = A2ACardResolver(
149149
httpx_client=mock_httpx_client,
150150
base_url='http://example.com/',
151-
agent_card_path='/.well-known/agent.json/',
151+
agent_card_path='/.well-known/agent-card.json/',
152152
)
153153
assert resolver.base_url == 'http://example.com'
154-
assert resolver.agent_card_path == '.well-known/agent.json/'
154+
assert resolver.agent_card_path == '.well-known/agent-card.json/'
155155

156156
@pytest.mark.asyncio
157157
async def test_get_agent_card_success_public_only(

0 commit comments

Comments
 (0)