Skip to content

Commit bfc77be

Browse files
Use single quotes to avoid syntax errors from f-string
Co-authored-by: Sviatoslav Sydorenko (Святослав Сидоренко) <[email protected]>
1 parent ca3ade6 commit bfc77be

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/test_from_sdist.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ def test_simple(tmp_path):
6565
"""
6666
import os
6767
68-
assert os.path.exists("setup.py")
69-
assert os.path.exists("{package}/setup.py")
68+
assert os.path.exists('setup.py')
69+
assert os.path.exists('{package}/setup.py')
7070
""",
7171
)
7272
setup_py_assertion_cmd = f'python3 -c "{setup_py_assertion_snippet !s}"'

0 commit comments

Comments
 (0)