Skip to content

Commit 43af621

Browse files
committed
add ExtraAssertions to test_support
1 parent e42a39c commit 43af621

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Lib/test/test_support.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
from test.support import script_helper
2222
from test.support import socket_helper
2323
from test.support import warnings_helper
24+
from test.support.testcase import ExtraAssertions
2425

2526
TESTFN = os_helper.TESTFN
2627

@@ -50,7 +51,7 @@ def _caplog():
5051
root_logger.removeHandler(handler)
5152

5253

53-
class TestSupport(unittest.TestCase):
54+
class TestSupport(unittest.TestCase, ExtraAssertions):
5455
@classmethod
5556
def setUpClass(cls):
5657
orig_filter_len = len(warnings.filters)

0 commit comments

Comments
 (0)