Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tests/integration/test_intra_package_cleanup.py
Original file line number Diff line number Diff line change
Expand Up @@ -280,8 +280,8 @@ def test_shared_file_survives_when_other_package_still_deploys_it(
for dep in local_deps_before
if ".github/prompts/shared.prompt.md" in (dep.get("deployed_files") or [])
]
assert len(shared_claims) == 2, (
"Both local packages must claim the shared prompt before testing cleanup"
assert {dep["name"] for dep in shared_claims} == {"pkg-b"}, (
"Only the last writer may claim the shared prompt before testing cleanup"
)
Comment on lines +283 to 285

shared_target = temp_project / ".github" / "prompts" / "shared.prompt.md"
Expand Down
Loading