Skip to content

Commit ba5a678

Browse files
nipunn1313uranusjr
authored andcommitted
Run black on tests/functional/test_new_resolver_target.py
1 parent 1306868 commit ba5a678

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

tests/functional/test_new_resolver_target.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77

88
@pytest.fixture()
99
def make_fake_wheel(script):
10-
1110
def _make_fake_wheel(wheel_tag):
1211
wheel_house = script.scratch_path.joinpath("wheelhouse")
1312
wheel_house.mkdir()
@@ -39,8 +38,10 @@ def test_new_resolver_target_checks_compatibility_failure(
3938
args = [
4039
"install",
4140
"--only-binary=:all:",
42-
"--no-cache-dir", "--no-index",
43-
"--target", str(script.scratch_path.joinpath("target")),
41+
"--no-cache-dir",
42+
"--no-index",
43+
"--target",
44+
str(script.scratch_path.joinpath("target")),
4445
make_fake_wheel(fake_wheel_tag),
4546
]
4647
if implementation:
@@ -58,7 +59,7 @@ def test_new_resolver_target_checks_compatibility_failure(
5859
abi,
5960
platform,
6061
)
61-
wheel_tag_matches = (args_tag == fake_wheel_tag)
62+
wheel_tag_matches = args_tag == fake_wheel_tag
6263

6364
result = script.pip(*args, expect_error=(not wheel_tag_matches))
6465

0 commit comments

Comments
 (0)