Skip to content

Commit f4c777a

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

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

tests/test_pytest_randomly.py

+6-2
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,9 @@ def test_b():
7878
assert test_b.num == test_a.num
7979
"""
8080
)
81-
out = ourtester.runpytest("--randomly-dont-reorganize", "--randomly-dont-seed-per-test")
81+
out = ourtester.runpytest(
82+
"--randomly-dont-reorganize", "--randomly-dont-seed-per-test"
83+
)
8284
out.assert_outcomes(passed=2, failed=0)
8385

8486

@@ -799,7 +801,9 @@ def fake_entry_points(*, group):
799801
]
800802

801803
reseed.mock_calls[:] = []
802-
pytester.runpytest_inprocess("--randomly-seed=424242", "--randomly-dont-seed-per-test")
804+
pytester.runpytest_inprocess(
805+
"--randomly-seed=424242", "--randomly-dont-seed-per-test"
806+
)
803807
assert reseed.mock_calls == [
804808
mock.call(424242),
805809
mock.call(424242),

0 commit comments

Comments
 (0)