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"])