Skip to content

Commit 5ca4fe0

Browse files
bpo-13120: fix typo with test_issue13120() method name (GH-12250)
Incorrect issue number '13210' added in 539ee5d. https://bugs.python.org/issue13120 (cherry picked from commit 9139f92) Co-authored-by: Daniel Hahler <github@thequod.de>
1 parent 85730b8 commit 5ca4fe0

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Lib/test/test_pdb.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1262,9 +1262,9 @@ def bar():
12621262
any('main.py(5)foo()->None' in l for l in stdout.splitlines()),
12631263
'Fail to step into the caller after a return')
12641264

1265-
def test_issue13210(self):
1266-
# invoking "continue" on a non-main thread triggered an exception
1267-
# inside signal.signal
1265+
def test_issue13120(self):
1266+
# Invoking "continue" on a non-main thread triggered an exception
1267+
# inside signal.signal.
12681268

12691269
with open(support.TESTFN, 'wb') as f:
12701270
f.write(textwrap.dedent("""

0 commit comments

Comments
 (0)