Skip to content

Commit 22f2dac

Browse files
authored
Fix test assertion speckit.plan.md to speckit.plan.agent
Fix test assertion speckit.plan.md to speckit.plan.agent
1 parent c3e368a commit 22f2dac

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/test_ai_skills.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -455,7 +455,7 @@ def test_copilot_ignores_non_speckit_agents(self, project_dir):
455455
"""Non-speckit markdown in .github/agents/ must not produce skills."""
456456
agents_dir = project_dir / ".github" / "agents"
457457
agents_dir.mkdir(parents=True, exist_ok=True)
458-
(agents_dir / "speckit.plan.md").write_text(
458+
(agents_dir / "speckit.plan.agent.md").write_text(
459459
"---\ndescription: Generate implementation plan.\n---\n\n# Plan\n\nBody.\n"
460460
)
461461
(agents_dir / "other-agent.agent.md").write_text(

0 commit comments

Comments
 (0)