Skip to content

Commit f87e521

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 95786b4 commit f87e521

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

testing/acceptance_test.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1513,17 +1513,17 @@ def test_c(self):
15131513
""" + ((_test_content * 4) % ("A", "B", "C", "D"))
15141514

15151515
@pytest.mark.parametrize(
1516-
"scope", ["each", "isoscope", "load", "loadscope", "loadfile",
1517-
"worksteal", "no"]
1516+
"scope",
1517+
["each", "isoscope", "load", "loadscope", "loadfile", "worksteal", "no"],
15181518
)
15191519
def test_single_file(self, pytester: pytest.Pytester, scope: str) -> None:
15201520
pytester.makepyfile(test_a=self.test_file1)
15211521
result = pytester.runpytest("-n2", "--dist=%s" % scope, "-v")
15221522
result.assert_outcomes(passed=(12 if scope != "each" else 12 * 2))
15231523

15241524
@pytest.mark.parametrize(
1525-
"scope", ["each", "isoscope", "load", "loadscope", "loadfile",
1526-
"worksteal", "no"]
1525+
"scope",
1526+
["each", "isoscope", "load", "loadscope", "loadfile", "worksteal", "no"],
15271527
)
15281528
def test_multi_file(self, pytester: pytest.Pytester, scope: str) -> None:
15291529
pytester.makepyfile(

0 commit comments

Comments
 (0)