From 992cac66d0f34ea48d588190a7b42f82dfbdfa4c Mon Sep 17 00:00:00 2001 From: tjb-tech <1193992557@qq.com> Date: Thu, 16 Apr 2026 13:16:32 +0000 Subject: [PATCH] fix(test): align autopilot dashboard assertion --- tests/test_services/test_autopilot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_services/test_autopilot.py b/tests/test_services/test_autopilot.py index 0a381e1..86dc651 100644 --- a/tests/test_services/test_autopilot.py +++ b/tests/test_services/test_autopilot.py @@ -119,7 +119,7 @@ def test_autopilot_export_dashboard_writes_static_site(tmp_path: Path) -> None: assert snapshot_path.exists() index_text = index_path.read_text(encoding="utf-8") snapshot_text = snapshot_path.read_text(encoding="utf-8") - assert "self-evolution board" in index_text + assert "Autopilot Kanban" in index_text assert "snapshot.json" in index_text assert "Build kanban page" in snapshot_text assert '"status_order"' in snapshot_text