Skip to content

Commit

Permalink
fix list construction in results_for_tests()
Browse files Browse the repository at this point in the history
  • Loading branch information
kkaarreell committed Sep 18, 2024
1 parent 696107b commit 73df2ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tmt/steps/execute/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1193,5 +1193,5 @@ def results_for_tests(self, tests: list['tmt.base.Test']) \
] + [
(None, test)
for test in tests
if test.serial_number in referenced_serial_numbers
if test.serial_number not in referenced_serial_numbers
]

0 comments on commit 73df2ce

Please sign in to comment.