From bd365f7093824e80a7e1c39b389f1d0ef056cacb Mon Sep 17 00:00:00 2001 From: Adam Johnson Date: Mon, 21 Feb 2022 09:33:45 +0000 Subject: [PATCH] Fix unittest.TextTestResult showAll name (#7340) --- stdlib/unittest/runner.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdlib/unittest/runner.pyi b/stdlib/unittest/runner.pyi index eb6383074..b0b657bce 100644 --- a/stdlib/unittest/runner.pyi +++ b/stdlib/unittest/runner.pyi @@ -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: ...