Skip to content

Commit edabb5e

Browse files
committed
Revert "don't add empty lines"
This reverts commit 2ab6c6f.
1 parent 2ab6c6f commit edabb5e

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

scripts/pass_rate.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,9 +102,7 @@ def get_missing_tests(warnings: List[TestWarning]) -> List[str]:
102102
continue
103103
for line in warning.message.splitlines():
104104
if line.startswith(' - '):
105-
cleared_line = line.removeprefix(' - ').strip()
106-
if cleared_line:
107-
tests.add(cleared_line)
105+
tests.add(line.removeprefix(' - '))
108106
return sorted(list(tests))
109107

110108

0 commit comments

Comments
 (0)