Skip to content

Commit 189dda3

Browse files
committed
fix
1 parent 95da6fe commit 189dda3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_prompts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ async def test_jupyter_cite(mcp_client_parametrized: MCPClient):
2828
# Test prompt injection
2929
response = await mcp_client_parametrized.jupyter_cite(prompt="test prompt", cell_indices="0")
3030
assert "# Matplotlib Examples" in response[0], "Cell 0 should contain Matplotlib Examples"
31-
assert "test prompt" not in response[0], "Prompt should not be injected"
31+
assert "test prompt" in response[0], "Prompt should be injected"
3232
# Test mixed cell_indices
3333
response = await mcp_client_parametrized.jupyter_cite(prompt="", cell_indices="0-2,4")
3434
assert "USER Cite cells [0, 1, 2, 4]" in response[0], "Cell indices should be [0, 1, 2, 4]"

0 commit comments

Comments
 (0)