diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-08-12 02:17:23 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-12 02:17:23 (GMT) |
commit | d7f5796a1ec7ba223f6a844d7580559abef05238 (patch) | |
tree | 856abea98c991afbec9f5eb1d28070af8abd4586 | |
parent | 09d814b3833c2c852f4f233297b4561028782d2a (diff) | |
download | cpython-d7f5796a1ec7ba223f6a844d7580559abef05238.zip cpython-d7f5796a1ec7ba223f6a844d7580559abef05238.tar.gz cpython-d7f5796a1ec7ba223f6a844d7580559abef05238.tar.bz2 |
bpo-33930: Fix typo in the test name. (GH-27735)
bpo-33930: Fix typo in the test name. (GH-27733)
(cherry picked from commit f08e6d1bb3c5655f184af88c6793e90908bb6338)
Co-authored-by: Benjamin Peterson <benjamin@python.org>
Co-authored-by: Benjamin Peterson <benjamin@python.org>
-rw-r--r-- | Lib/test/test_exceptions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_exceptions.py b/Lib/test/test_exceptions.py index a29a1a7..f92d76a 100644 --- a/Lib/test/test_exceptions.py +++ b/Lib/test/test_exceptions.py @@ -984,7 +984,7 @@ class ExceptionTests(unittest.TestCase): @cpython_only - def test_crashcan_recursion(self): + def test_trashcan_recursion(self): # See bpo-33930 def foo(): |