Skip to content

Commit 5725ace

Browse files
HanSur94claude
andcommitted
fix(07): update _make_mock_pool references to conftest make_mock_pool after merge
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent d6a6352 commit 5725ace

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

tests/test_executor_extra.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)