fix(fase3): relax hardcoded project-count assert in spike test (SC1 4th-project follow-up)

This commit is contained in:
Kjell Tore Guttormsen 2026-06-26 12:14:34 +02:00
commit ac49b0795f

View file

@ -26,7 +26,7 @@ async def test_bounded_magentic_terminates_within_limit() -> None:
async def test_shared_instance_bleeds_conversation_across_projects() -> None:
ids = [p.id for p in load_reference_projects()]
assert len(ids) == 3
assert len(ids) >= 2 # need >=2 projects to show cross-run bleed (portfolio grew via SC1)
seen = await shared_instance_conversation_bleed(ids)
# Reusing ONE built workflow accumulates the MAF thread across runs: each run's
# participant receives the EARLIER projects' prompts too (genuine G2/B7 bleed),