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 8ce0cf9 commit a137ea1Copy full SHA for a137ea1
tests/server/fastmcp/resources/test_resource_template.py
@@ -257,4 +257,4 @@ def get_item(item_id: str) -> str: # pragma: no cover
257
258
# Verify the resource works correctly
259
content = await resource.read()
260
- assert content == "Item 123"
+ assert content == "Item 123"
tests/server/fastmcp/resources/test_resources.py
@@ -200,4 +200,4 @@ def test_audience_validation(self):
200
201
# Invalid roles should raise validation error
202
with pytest.raises(Exception): # Pydantic validation error
203
- Annotations(audience=["invalid_role"]) # type: ignore
+ Annotations(audience=["invalid_role"]) # type: ignore
0 commit comments