Skip to content

Commit 2eb126d

Browse files
committed
fix
1 parent 9952a40 commit 2eb126d

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

tests/test_cli.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,4 @@ def test_slowest_tests(durations_file):
2828
cli.list_slowest_tests()
2929

3030
output = sys.stdout.getvalue() # type: ignore[attr-defined]
31-
assert output == ("10.00 test_10\n"
32-
"9.00 test_9\n"
33-
"8.00 test_8\n")
31+
assert output == ("10.00 test_10\n9.00 test_9\n8.00 test_8\n")

tests/test_plugin.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,8 @@ class TestSplitToSuites:
171171
enumerated_params = [(i, *param) for i, param in enumerate(all_params)]
172172

173173
@pytest.mark.parametrize(
174-
("test_idx", "splits", "group", "algo", "expected", "legacy_flag"), enumerated_params
174+
("test_idx", "splits", "group", "algo", "expected", "legacy_flag"),
175+
enumerated_params,
175176
)
176177
def test_it_splits( # noqa: PLR0913
177178
self,

0 commit comments

Comments
 (0)