mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-20 12:24:59 +00:00
fix: Use raw string for backslash in f-string expression
This commit is contained in:
parent
2727eb6dd7
commit
e6c191bdc6
1 changed files with 1 additions and 1 deletions
|
@ -325,7 +325,7 @@ class TestCoder(unittest.TestCase):
|
||||||
# {test_files[1]},
|
# {test_files[1]},
|
||||||
# ),
|
# ),
|
||||||
# Files with Windows-style paths
|
# Files with Windows-style paths
|
||||||
(f"Edit the file {test_files[2].replace('/', '\\')}", {test_files[2]}),
|
(f"Edit the file {test_files[2].replace('/', r'\\')}", {test_files[2]}),
|
||||||
# Files with different quote styles
|
# Files with different quote styles
|
||||||
(f'Check "{test_files[5]}" now', {test_files[5]}),
|
(f'Check "{test_files[5]}" now', {test_files[5]}),
|
||||||
# All files in one complex message
|
# All files in one complex message
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue