Commit 9139f926 authored by Daniel Hahler's avatar Daniel Hahler Committed by Miss Islington (bot)

bpo-13120: fix typo with test_issue13120() method name (GH-12250)



Incorrect issue number '13210' added in 539ee5da.


https://bugs.python.org/issue13120
parent b4bcefe5
...@@ -1266,9 +1266,9 @@ class PdbTestCase(unittest.TestCase): ...@@ -1266,9 +1266,9 @@ class PdbTestCase(unittest.TestCase):
any('main.py(5)foo()->None' in l for l in stdout.splitlines()), any('main.py(5)foo()->None' in l for l in stdout.splitlines()),
'Fail to step into the caller after a return') 'Fail to step into the caller after a return')
def test_issue13210(self): def test_issue13120(self):
# invoking "continue" on a non-main thread triggered an exception # Invoking "continue" on a non-main thread triggered an exception
# inside signal.signal # inside signal.signal.
with open(support.TESTFN, 'wb') as f: with open(support.TESTFN, 'wb') as f:
f.write(textwrap.dedent(""" f.write(textwrap.dedent("""
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment