Skip to content

Commit aaa2fc8

Browse files
Kasper Jungeclaude
authored andcommitted
Fix formatting in test_sync.py and test_commands.py
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 1454f8c commit aaa2fc8

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

tests/cli/agr/test_sync.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,4 +86,3 @@ def test_sync_instructions_creates_agents_for_cursor(
8686
assert_cli(result).succeeded()
8787
assert (cli_project / "AGENTS.md").exists()
8888
assert (cli_project / "AGENTS.md").read_text() == "Claude instructions\n"
89-

tests/test_commands.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,11 @@ def test_suggests_sorted_unique_skills(self, monkeypatch):
208208
result = _maybe_suggest_repo_skills("owner/repo", handle, resolver, None)
209209
assert result is not None
210210

211-
lines = [line.strip() for line in result.splitlines() if line.strip().startswith("agr add")]
211+
lines = [
212+
line.strip()
213+
for line in result.splitlines()
214+
if line.strip().startswith("agr add")
215+
]
212216
assert lines == [
213217
"agr add owner/repo/alpha",
214218
"agr add owner/repo/beta",

0 commit comments

Comments
 (0)