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 e42a39c commit 43af621Copy full SHA for 43af621
Lib/test/test_support.py
@@ -21,6 +21,7 @@
21
from test.support import script_helper
22
from test.support import socket_helper
23
from test.support import warnings_helper
24
+from test.support.testcase import ExtraAssertions
25
26
TESTFN = os_helper.TESTFN
27
@@ -50,7 +51,7 @@ def _caplog():
50
51
root_logger.removeHandler(handler)
52
53
-class TestSupport(unittest.TestCase):
54
+class TestSupport(unittest.TestCase, ExtraAssertions):
55
@classmethod
56
def setUpClass(cls):
57
orig_filter_len = len(warnings.filters)
0 commit comments