We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8074741 commit aaebd24Copy full SHA for aaebd24
test/t/conftest.py
@@ -776,7 +776,9 @@ def startswith(self, prefix: str) -> bool:
776
return self.output.startswith(prefix)
777
778
def _items(self) -> List[str]:
779
- return sorted([x.strip() for x in self.output.strip().splitlines()])
+ return sorted(
780
+ [x.strip() for x in self.output.strip().splitlines() if x]
781
+ )
782
783
def __eq__(self, expected: object) -> bool:
784
"""
0 commit comments