File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -964,7 +964,7 @@ class CPythonTracebackLegacyErrorCaretTests(
964
964
"""
965
965
966
966
967
- class TracebackFormatMixing :
967
+ class TracebackFormatMixin :
968
968
DEBUG_RANGES = True
969
969
970
970
def some_exception (self ):
@@ -1353,11 +1353,11 @@ def test_print_exception_bad_type_python(self):
1353
1353
boundaries = re .compile (
1354
1354
'(%s|%s)' % (re .escape (cause_message ), re .escape (context_message )))
1355
1355
1356
- class TestTracebackFormat (unittest .TestCase , TracebackFormatMixing ):
1356
+ class TestTracebackFormat (unittest .TestCase , TracebackFormatMixin ):
1357
1357
pass
1358
1358
1359
1359
@cpython_only
1360
- class TestFallbackTracebackFormat (unittest .TestCase , TracebackFormatMixing ):
1360
+ class TestFallbackTracebackFormat (unittest .TestCase , TracebackFormatMixin ):
1361
1361
DEBUG_RANGES = False
1362
1362
def setUp (self ) -> None :
1363
1363
self .original_hook = traceback ._print_exception_bltin
You can’t perform that action at this time.
0 commit comments