Skip to content

Commit 7aa99eb

Browse files
happzmartinhoyer
authored andcommitted
squash: post-rebase fixes
1 parent b6c72c4 commit 7aa99eb

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tests/unit/test_results.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
ResultOutcome.ERROR,
3131
ResultOutcome.PENDING,
3232
],
33-
TmtExitCode.ERROR
33+
TmtExitCode.ERROR,
3434
),
3535
# There was a fail or warn identified, but no error.
3636
(
@@ -42,7 +42,7 @@
4242
ResultOutcome.WARN,
4343
ResultOutcome.PENDING,
4444
],
45-
TmtExitCode.FAIL
45+
TmtExitCode.FAIL,
4646
),
4747
# Tests were executed, and all reported the ``skip`` result.
4848
(
@@ -67,16 +67,16 @@
6767
ResultOutcome.INFO,
6868
ResultOutcome.SKIP,
6969
],
70-
TmtExitCode.SUCCESS
70+
TmtExitCode.SUCCESS,
7171
),
7272
# A pending without any fail or error is treated as an error.
7373
(
7474
[
7575
ResultOutcome.PASS,
7676
ResultOutcome.PENDING,
7777
],
78-
TmtExitCode.ERROR
79-
)
78+
TmtExitCode.ERROR,
79+
),
8080
],
8181
# IDs copied from the specification:
8282
ids=(

0 commit comments

Comments
 (0)