mirror of https://github.com/python/cpython
bpo-13120: fix typo with test_issue13120() method name (GH-12250)
Incorrect issue number '13210' added in 539ee5da6f
.
https://bugs.python.org/issue13120
This commit is contained in:
parent
b4bcefe5fe
commit
9139f926a8
|
@ -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("""
|
||||
|
|
Loading…
Reference in New Issue