Skip to content

Commit cd10939

Browse files
committed
fix: test don't use async
1 parent ac041ff commit cd10939

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/issues/test_783_mount_path_sse_message.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55

66
@pytest.mark.parametrize("mount_path", ["/sse", "/custom/mount/path", None])
7-
async def test_mount_path_included_in_sse_message_path(mount_path):
7+
def test_mount_path_included_in_sse_message_path(mount_path):
88
"""Test that the mount path is included in the SSE message path when specified."""
99
app = FastMCP("Test App")
1010
starlette_app = app.sse_app(mount_path)

0 commit comments

Comments
 (0)