diff --git a/tests/tools/test_skills_sync.py b/tests/tools/test_skills_sync.py index 1a647ff36..c13ed1872 100644 --- a/tests/tools/test_skills_sync.py +++ b/tests/tools/test_skills_sync.py @@ -886,9 +886,8 @@ class TestResetBundledSkill: assert "upstream" in (dest / "SKILL.md").read_text() # The read-only nested user dir/file was fully removed, not left behind. assert not (sub / "ref.md").exists() - # Manifest now tracks the skill again (re-baselined, not in limbo). - manifest_after = _read_manifest() - assert "google-workspace" in manifest_after + # sync ran and re-copied the skill (not stuck in limbo). + assert "google-workspace" in result["synced"]["copied"] finally: # Restore perms so tmp_path teardown can remove anything left. for p in (sub, dest):