@@ -809,7 +809,7 @@ async def test_executor_rejects_blocked_code(self) -> None:
809809 from matlab_mcp .config import SecurityConfig
810810 from matlab_mcp .security .validator import SecurityValidator
811811
812- pool , wrapper , inner = _make_mock_pool ()
812+ pool , wrapper , inner = make_mock_pool ()
813813 tracker = JobTracker ()
814814 config = AppConfig ()
815815 config .execution = ExecutionConfig (sync_timeout = 5 )
@@ -826,7 +826,7 @@ async def test_executor_allows_clean_code(self) -> None:
826826 from matlab_mcp .config import SecurityConfig
827827 from matlab_mcp .security .validator import SecurityValidator
828828
829- pool , wrapper , inner = _make_mock_pool ()
829+ pool , wrapper , inner = make_mock_pool ()
830830 tracker = JobTracker ()
831831 config = AppConfig ()
832832 config .execution = ExecutionConfig (sync_timeout = 5 )
@@ -845,7 +845,7 @@ async def test_executor_allows_clean_code(self) -> None:
845845
846846 async def test_executor_without_security_does_not_block (self ) -> None :
847847 """Executor without a security validator should not block any code."""
848- pool , wrapper , inner = _make_mock_pool ()
848+ pool , wrapper , inner = make_mock_pool ()
849849 tracker = JobTracker ()
850850 config = AppConfig ()
851851 config .execution = ExecutionConfig (sync_timeout = 5 )
0 commit comments