Test namespace is passed correctly.
()
| 215 | |
| 216 | @pytest.mark.asyncio |
| 217 | async def test_execute_tools_parallel_respects_namespace(): |
| 218 | """Test namespace is passed correctly.""" |
| 219 | manager = MockToolManager() |
| 220 | calls = [ |
| 221 | CTPToolCall(id="call_1", tool="test_tool", arguments={}, namespace="custom_ns") |
| 222 | ] |
| 223 | |
| 224 | results = await execute_tools_parallel(manager, calls) |
| 225 | |
| 226 | assert len(results) == 1 |
| 227 | |
| 228 | |
| 229 | # ---------------------------------------------------------------------------- |
nothing calls this directly
no test coverage detected