Skip to content

Commit 6d8e4e8

Browse files
committed
style: Fix string quote consistency in test_coder.py
1 parent 4716cce commit 6d8e4e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/basic/test_coder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ def test_get_file_mentions_various_formats(self):
302302

303303
# Pre-format the Windows path to avoid backslash issues in f-string expressions
304304
windows_path = test_files[2].replace("/", "\\")
305-
win_path3 = test_files[3].replace('/', '\\')
305+
win_path3 = test_files[3].replace("/", "\\")
306306

307307
for fname in test_files:
308308
fpath = Path(fname)

0 commit comments

Comments
 (0)