style: Fix string quote consistency in test_coder.py

This commit is contained in:
Paul Gauthier (aider) 2025-03-25 11:05:58 -10:00
parent 4716cce208
commit 6d8e4e8fb1

View file

@ -302,7 +302,7 @@ class TestCoder(unittest.TestCase):
# Pre-format the Windows path to avoid backslash issues in f-string expressions
windows_path = test_files[2].replace("/", "\\")
win_path3 = test_files[3].replace('/', '\\')
win_path3 = test_files[3].replace("/", "\\")
for fname in test_files:
fpath = Path(fname)