File tree Expand file tree Collapse file tree 1 file changed +0
-17
lines changed
Expand file tree Collapse file tree 1 file changed +0
-17
lines changed Original file line number Diff line number Diff line change @@ -124,23 +124,6 @@ async def test_starlette_routes_with_mount_path(self):
124124 mount_routes [0 ].path == "/messages"
125125 ), "Mount route path should be /messages"
126126
127- mcp = FastMCP ()
128- app = mcp .streamable_http_app ()
129-
130- # Find routes by type
131- streamable_routes = [r for r in app .routes if isinstance (r , Route )]
132-
133- # Verify routes exist
134- assert len (streamable_routes ) == 2 , "Should have two streamable routes"
135-
136- # Verify path values
137- assert (
138- streamable_routes [0 ].path == "/mcp"
139- ), "Streamable route path should be /mcp"
140- assert (
141- streamable_routes [1 ].path == "/mcp/"
142- ), "Streamable route path should be /mcp/"
143-
144127 @pytest .mark .anyio
145128 async def test_non_ascii_description (self ):
146129 """Test that FastMCP handles non-ASCII characters in descriptions correctly"""
You can’t perform that action at this time.
0 commit comments