From 02bdb45c4df2a093e3820f8f190eb39eb0267c45 Mon Sep 17 00:00:00 2001 From: Joseph Magly <1159087+jmagly@users.noreply.github.com> Date: Fri, 21 Aug 2026 18:07:02 -0400 Subject: [PATCH] test(aiwg): track refreshed Codex surface --- tests/test_aiwg_workspace_contracts.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_aiwg_workspace_contracts.py b/tests/test_aiwg_workspace_contracts.py index 10e7a81..1f44fc3 100644 --- a/tests/test_aiwg_workspace_contracts.py +++ b/tests/test_aiwg_workspace_contracts.py @@ -28,16 +28,16 @@ def _assert_utc_timestamp(value: str) -> None: assert parsed.utcoffset() is not None -def test_aiwg_manifest_requires_release_with_codex_size_fix(): +def test_aiwg_manifest_requires_current_codex_surface(): config = _load_json(".aiwg/aiwg.config") installation = config["installed"]["all"] - assert _calendar_version(installation["version"]) >= (2026, 8, 11) + assert _calendar_version(installation["version"]) >= (2026, 8, 15) assert installation["source"] == "bundled" assert installation["deployedTo"]["codex"] == { "agents": 0, "commands": 50, - "skills": 31, + "skills": 32, "rules": 2, } _assert_utc_timestamp(installation["installedAt"])