From 3e21978a9c2f4ac51c574e72ba358ca698f3488a Mon Sep 17 00:00:00 2001 From: Bryan Van Deusen Date: Thu, 20 Aug 2026 08:24:05 -0400 Subject: [PATCH] fix(tests): restore the assert my seed-test insertion orphaned from its neighbor Co-Authored-By: Claude Fable 5 --- tests/test_mcp_tool_projects.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_mcp_tool_projects.py b/tests/test_mcp_tool_projects.py index 28e9f70..8f43cd8 100644 --- a/tests/test_mcp_tool_projects.py +++ b/tests/test_mcp_tool_projects.py @@ -328,6 +328,7 @@ async def test_enter_project_never_asks_bootstrap_once_a_vocabulary_exists( )) out = await enter_project(project_id=5) assert "systems_bootstrap" not in out + _no_bootstrap.assert_not_awaited() @pytest.mark.asyncio @@ -353,7 +354,6 @@ async def test_enter_project_fires_the_coverage_seed_on_the_owner( seed.assert_called_once_with(42, 5, cached=None) _no_background_seed.assert_called_once() assert _no_background_seed.call_args.kwargs["site"] == "enter_project.coverage_seed" - _no_bootstrap.assert_not_awaited() @pytest.mark.asyncio