diff --git a/agent-pack/README.md b/agent-pack/README.md index 039a2c1..fcc9e39 100644 --- a/agent-pack/README.md +++ b/agent-pack/README.md @@ -42,7 +42,7 @@ contract and introduces the generic builder agent: | Gateway | Result | |---|---| -| Repository validation | PASS (78 tests) | +| Repository validation | PASS (92 tests) | | Builder agent implementation review | PASS | | Task Execution Policy foundation review | READY FOR INDEPENDENT REVIEW | | ACP independent review | PASS | diff --git a/tests/test_agent_rollout.py b/tests/test_agent_rollout.py index c776159..72494e8 100644 --- a/tests/test_agent_rollout.py +++ b/tests/test_agent_rollout.py @@ -754,11 +754,11 @@ def test_mechanical_no_weakened_boundary_after_remediation(self) -> None: class TestReadmeTestCount: """Tests for README current-vs-historical test-count treatment.""" - def test_readme_current_state_78_tests(self) -> None: + def test_readme_current_state_92_tests(self) -> None: """README gateway table states the current 78-test count.""" readme = Path(__file__).resolve().parents[1] / "agent-pack" / "README.md" content = readme.read_text(encoding="utf-8") - assert "| Repository validation | PASS (78 tests) |" in content + assert "| Repository validation | PASS (92 tests) |" in content def test_readme_preserves_historical_33_test_evidence(self) -> None: """README retains the historical v0.4.0 33-test release checkpoint."""