From afc84c119c85b14c3531824c00c7f2e3ad832f52 Mon Sep 17 00:00:00 2001 From: Matt Bogosian Date: Sun, 11 Feb 2018 16:16:35 -0800 Subject: [PATCH] Add TestCase.longMessage to stdlib/2/unittest.pyi (#1875) Fixes #1874. --- stdlib/2/unittest.pyi | 1 + 1 file changed, 1 insertion(+) diff --git a/stdlib/2/unittest.pyi b/stdlib/2/unittest.pyi index e8b1b7f62..08cd73f46 100644 --- a/stdlib/2/unittest.pyi +++ b/stdlib/2/unittest.pyi @@ -53,6 +53,7 @@ class _AssertRaisesContext(_AssertRaisesBaseContext): class TestCase(Testable): failureException = ... # type: Type[BaseException] + longMessage = ... # type: bool def __init__(self, methodName: str = ...) -> None: ... def setUp(self) -> None: ... def tearDown(self) -> None: ...