diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-07-25 21:23:33 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-25 21:23:33 (GMT) |
commit | 3d15c8b84b334658a5476a9cbf2626fe15fc7344 (patch) | |
tree | 85b94d3eed2885a452d3ef49f6b76dbde2b5d347 | |
parent | 0107731a06db13cf93fc56cc72524f0493c6a04f (diff) | |
download | cpython-3d15c8b84b334658a5476a9cbf2626fe15fc7344.zip cpython-3d15c8b84b334658a5476a9cbf2626fe15fc7344.tar.gz cpython-3d15c8b84b334658a5476a9cbf2626fe15fc7344.tar.bz2 |
[3.12] gh-106185: Deduplicate `CPythonTracebackErrorCaretTests` in `test_traceback` (GH-106187) (GH-107268)
(cherry picked from commit 7c89f1189229c5c67a3766e24ecf00cde658b7fd)
Co-authored-by: Nikita Sobolev <mail@sobolevn.me>
-rw-r--r-- | Lib/test/test_traceback.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_traceback.py b/Lib/test/test_traceback.py index 19a2be8..9476e2c 100644 --- a/Lib/test/test_traceback.py +++ b/Lib/test/test_traceback.py @@ -918,7 +918,7 @@ class CPythonTracebackErrorCaretTests( @cpython_only @requires_debug_ranges() -class CPythonTracebackErrorCaretTests( +class CPythonTracebackLegacyErrorCaretTests( CAPIExceptionFormattingLegacyMixin, TracebackErrorLocationCaretTestBase, unittest.TestCase, |