Skip to content

Commit c1c74dc

Browse files
authored
Merge pull request #10318 from nipunn1313/blacken_tests24
Run black on tests/functional/test_install_requested.py
2 parents bf91a07 + 7a19a9e commit c1c74dc

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

tests/functional/test_install_requested.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,7 @@ def test_install_requested_basic(script, data, with_wheel):
2222

2323

2424
def test_install_requested_requirements(script, data, with_wheel):
25-
script.scratch_path.joinpath("requirements.txt").write_text(
26-
"require_simple\n"
27-
)
25+
script.scratch_path.joinpath("requirements.txt").write_text("require_simple\n")
2826
result = script.pip(
2927
"install",
3028
"--no-index",
@@ -55,9 +53,7 @@ def test_install_requested_dep_in_requirements(script, data, with_wheel):
5553

5654

5755
def test_install_requested_reqs_and_constraints(script, data, with_wheel):
58-
script.scratch_path.joinpath("requirements.txt").write_text(
59-
"require_simple\n"
60-
)
56+
script.scratch_path.joinpath("requirements.txt").write_text("require_simple\n")
6157
script.scratch_path.joinpath("constraints.txt").write_text("simple<3\n")
6258
result = script.pip(
6359
"install",

0 commit comments

Comments
 (0)