Skip to content
Open
Changes from all commits
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
4 changes: 2 additions & 2 deletions tests/integrations/fastmcp/test_fastmcp.py
Original file line number Diff line number Diff line change
Expand Up @@ -606,9 +606,9 @@ def code_help_prompt(language: str):

# Check PII-sensitive data
if send_default_pii and include_prompts:
assert SPANDATA.MCP_PROMPT_CONTENT in span["data"]
assert SPANDATA.MCP_PROMPT_RESULT_MESSAGE_CONTENT in span["data"]
else:
assert SPANDATA.MCP_PROMPT_CONTENT not in span["data"]
assert SPANDATA.MCP_PROMPT_RESULT_MESSAGE_CONTENT not in span["data"]
except AttributeError:
# Prompt handler not supported in this version
pytest.skip("Prompt handlers not supported in this FastMCP version")
Expand Down
Loading