Fix unittest.TextTestResult showAll name (#7340)

This commit is contained in:
Adam Johnson
2022-02-21 09:33:45 +00:00
committed by GitHub
parent 4d169eaa83
commit bd365f7093

View File

@@ -10,7 +10,7 @@ class TextTestResult(unittest.result.TestResult):
dots: bool # undocumented
separator1: str
separator2: str
showall: bool # undocumented
showAll: bool # undocumented
stream: TextIO # undocumented
def __init__(self, stream: TextIO, descriptions: bool, verbosity: int) -> None: ...
def getDescription(self, test: unittest.case.TestCase) -> str: ...