fix(tests): restore the assert my seed-test insertion orphaned from its neighbor
CI & Build / Python lint (push) Successful in 3s
CI & Build / Plugin hooks (push) Successful in 8s
CI & Build / TypeScript typecheck (push) Successful in 10s
CI & Build / integration (push) Successful in 25s
CI & Build / Python tests (push) Successful in 53s
CI & Build / Build & push image (push) Successful in 25s

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
2026-08-20 08:24:05 -04:00
co-authored by Claude Fable 5
parent e2a084f1fb
commit 3e21978a9c
+1 -1
View File
@@ -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