]> granicus.if.org Git - python/commitdiff
bpo-13120: fix typo with test_issue13120() method name (GH-12250)
authorDaniel Hahler <github@thequod.de>
Mon, 1 Apr 2019 21:59:50 +0000 (23:59 +0200)
committerMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Mon, 1 Apr 2019 21:59:50 +0000 (14:59 -0700)
Incorrect issue number '13210' added in 539ee5da6f.

https://bugs.python.org/issue13120

Lib/test/test_pdb.py

index 7e03df02946beee21fd2799bb8712ff79ab05a69..56d823249544ae8e866519892631da1d890c9f9d 100644 (file)
@@ -1266,9 +1266,9 @@ class PdbTestCase(unittest.TestCase):
             any('main.py(5)foo()->None' in l for l in stdout.splitlines()),
             'Fail to step into the caller after a return')
 
-    def test_issue13210(self):
-        # invoking "continue" on a non-main thread triggered an exception
-        # inside signal.signal
+    def test_issue13120(self):
+        # Invoking "continue" on a non-main thread triggered an exception
+        # inside signal.signal.
 
         with open(support.TESTFN, 'wb') as f:
             f.write(textwrap.dedent("""