Skip to content

Commit 24159dd

Browse files
committed
style: Format test_coder.py for readability
1 parent ad0a2b3 commit 24159dd

1 file changed

Lines changed: 12 additions & 4 deletions

File tree

tests/basic/test_coder.py

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -349,12 +349,20 @@ def test_get_file_mentions_various_formats(self):
349349
),
350350
{test_files[1]},
351351
),
352-
353352
# Files mentioned in markdown bold format
354353
(f"You should check **{test_files[0]}** for issues", {test_files[0]}),
355-
(f"Look at both **{test_files[1]}** and **{test_files[2]}**", {test_files[1], test_files[2]}),
356-
(f"The file **{test_files[3].replace('/', '\\')}** needs updating", {test_files[3]}),
357-
(f"Files to modify:\n- **{test_files[0]}**\n- **{test_files[4]}**", {test_files[0], test_files[4]}),
354+
(
355+
f"Look at both **{test_files[1]}** and **{test_files[2]}**",
356+
{test_files[1], test_files[2]},
357+
),
358+
(
359+
f"The file **{test_files[3].replace('/', '\\')}** needs updating",
360+
{test_files[3]},
361+
),
362+
(
363+
f"Files to modify:\n- **{test_files[0]}**\n- **{test_files[4]}**",
364+
{test_files[0], test_files[4]},
365+
),
358366
(f"Files mentioned like **aider/args.py** should be detected", set()),
359367
]
360368

0 commit comments

Comments
 (0)