Skip to content

Commit fc6e6ce

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

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

testing/acceptance_test.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1278,7 +1278,9 @@ def test(i):
12781278
"""
12791279
pytester.makepyfile(test_a=test_file)
12801280
result = pytester.runpytest("-n2", "--dist=isoscope", "-v")
1281-
counts_by_worker = get_workers_and_test_count_by_prefix("test_a.py::test", result.outlines)
1281+
counts_by_worker = get_workers_and_test_count_by_prefix(
1282+
"test_a.py::test", result.outlines
1283+
)
12821284
assert counts_by_worker["gw0"] in (2, 3)
12831285
assert counts_by_worker["gw1"] in (2, 3)
12841286
assert counts_by_worker["gw0"] + counts_by_worker["gw1"] == 5

0 commit comments

Comments
 (0)