Skip to content

Commit 4de697e

Browse files
committed
style: match quotation marks
1 parent a712de7 commit 4de697e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

tests/test_build.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@
2222
files = tracked
2323
2424
for filename in map(posixpath.normpath, files):
25-
print(filename, end="\\0")
25+
print(filename, end='\\0')
2626
"""
2727

28-
MODULE1_TOML_FILES = ["EG_README.rst", "module1.py", "pyproject.toml"]
28+
MODULE1_TOML_FILES = ['EG_README.rst', 'module1.py', 'pyproject.toml']
2929

3030
def make_git_script(
3131
tracked = MODULE1_TOML_FILES,
32-
untracked_deleted = ["dist/module1-0.1.tar.gz"]
32+
untracked_deleted = ['dist/module1-0.1.tar.gz']
3333
):
3434
return LIST_FILES_TEMPLATE.format(
3535
python=sys.executable,
@@ -97,9 +97,9 @@ def test_build_module_no_docstring():
9797
shutil.copy(str(samples_dir / 'EG_README.rst'), td)
9898
Path(td, '.git').mkdir() # Fake a git repo
9999
tracked = [
100-
"pyproject.toml",
101-
"no_docstring.py",
102-
"EG_README.rst",
100+
'pyproject.toml',
101+
'no_docstring.py',
102+
'EG_README.rst',
103103
]
104104

105105
with MockCommand('git', make_git_script(tracked=tracked)):

0 commit comments

Comments
 (0)