We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 23e149d commit b3c201eCopy full SHA for b3c201e
2 files changed
tests/__init__.py
@@ -1 +0,0 @@
1
-#
tests/compat/v0_3/test_jsonrpc_app_compat.py
@@ -51,13 +51,13 @@ def test_app(mock_handler):
51
mock_agent_card.capabilities.streaming = False
52
mock_agent_card.capabilities.push_notifications = True
53
mock_agent_card.capabilities.extended_agent_card = True
54
- router = JsonRpcRoutes(
+ jsonrpc_routes = JsonRpcRoutes(
55
agent_card=mock_agent_card,
56
request_handler=mock_handler,
57
enable_v0_3_compat=True,
58
rpc_url='/',
59
)
60
- return Starlette(routes=router.routes)
+ return Starlette(routes=jsonrpc_routes.routes)
61
62
63
@pytest.fixture
0 commit comments