mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-20 04:14:59 +00:00
style: Format test_coder.py for readability
This commit is contained in:
parent
ad0a2b3260
commit
24159dda58
1 changed files with 12 additions and 4 deletions
|
@ -349,12 +349,20 @@ class TestCoder(unittest.TestCase):
|
|||
),
|
||||
{test_files[1]},
|
||||
),
|
||||
|
||||
# Files mentioned in markdown bold format
|
||||
(f"You should check **{test_files[0]}** for issues", {test_files[0]}),
|
||||
(f"Look at both **{test_files[1]}** and **{test_files[2]}**", {test_files[1], test_files[2]}),
|
||||
(f"The file **{test_files[3].replace('/', '\\')}** needs updating", {test_files[3]}),
|
||||
(f"Files to modify:\n- **{test_files[0]}**\n- **{test_files[4]}**", {test_files[0], test_files[4]}),
|
||||
(
|
||||
f"Look at both **{test_files[1]}** and **{test_files[2]}**",
|
||||
{test_files[1], test_files[2]},
|
||||
),
|
||||
(
|
||||
f"The file **{test_files[3].replace('/', '\\')}** needs updating",
|
||||
{test_files[3]},
|
||||
),
|
||||
(
|
||||
f"Files to modify:\n- **{test_files[0]}**\n- **{test_files[4]}**",
|
||||
{test_files[0], test_files[4]},
|
||||
),
|
||||
(f"Files mentioned like **aider/args.py** should be detected", set()),
|
||||
]
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue