From ac49b0795fa5dcf1ecab17ea949ab14c4734ee8b Mon Sep 17 00:00:00 2001 From: Kjell Tore Guttormsen Date: Fri, 26 Jun 2026 12:14:34 +0200 Subject: [PATCH] fix(fase3): relax hardcoded project-count assert in spike test (SC1 4th-project follow-up) --- tests/spikes/test_b_footguns.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/spikes/test_b_footguns.py b/tests/spikes/test_b_footguns.py index a59a8b9..e3db8ed 100644 --- a/tests/spikes/test_b_footguns.py +++ b/tests/spikes/test_b_footguns.py @@ -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),