Skip to content

Commit 95e7a2b

Browse files
rpluemvstinner
andcommitted
bpo-38347: Use double quotes instead of single ones
Co-Authored-By: Victor Stinner <[email protected]>
1 parent a174102 commit 95e7a2b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_tools/test_pathfix.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def test_recursive(self):
5555
tmpdir = support.TESTFN + '.d'
5656
self.addCleanup(support.rmtree, tmpdir)
5757
os.mkdir(tmpdir)
58-
expected_stderr = f'recursedown(\'{os.path.basename(tmpdir)}\')\n'
58+
expected_stderr = f"recursedown('{os.path.basename(tmpdir)}')\n"
5959
self.assertEqual(
6060
self.pathfix(
6161
'#! /usr/bin/env python',

0 commit comments

Comments
 (0)