Skip to content

Commit 41d33cc

Browse files
committed
fix(test_install_wheels): Fix flake8 errors
1 parent fa280b9 commit 41d33cc

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

tests/functional/test_install_wheel.py

+6-3
Original file line numberDiff line numberDiff line change
@@ -197,9 +197,12 @@ def test_install_wheel_with_target_and_data_files(script, data, with_wheel):
197197
'-t', target_dir,
198198
'--no-index')
199199

200-
result.did_create(Path('scratch') / 'prjwithdatafile' / 'packages1' / 'README.txt')
201-
result.did_create(Path('scratch') / 'prjwithdatafile' / 'packages2' / 'README.txt')
202-
result.did_not_create(Path('scratch') / 'prjwithdatafile' / 'lib' / 'python')
200+
result.did_create(
201+
Path('scratch') / 'prjwithdatafile' / 'packages1' / 'README.txt')
202+
result.did_create(
203+
Path('scratch') / 'prjwithdatafile' / 'packages2' / 'README.txt')
204+
result.did_not_create(
205+
Path('scratch') / 'prjwithdatafile' / 'lib' / 'python')
203206

204207

205208
def test_install_wheel_with_root(script, shared_data, tmpdir):

0 commit comments

Comments
 (0)