diff options
author | Daniel Hahler <github@thequod.de> | 2019-04-01 21:59:50 (GMT) |
---|---|---|
committer | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-04-01 21:59:50 (GMT) |
commit | 9139f926a8d8e5b71830cb7e10b0807836b5e9a4 (patch) | |
tree | ab0ae3b2db676de70053f7de77dd69f7ebf9b9dc | |
parent | b4bcefe5fe689ef5caf9c775f72c6d150f3e8ece (diff) | |
download | cpython-9139f926a8d8e5b71830cb7e10b0807836b5e9a4.zip cpython-9139f926a8d8e5b71830cb7e10b0807836b5e9a4.tar.gz cpython-9139f926a8d8e5b71830cb7e10b0807836b5e9a4.tar.bz2 |
bpo-13120: fix typo with test_issue13120() method name (GH-12250)
Incorrect issue number '13210' added in 539ee5da6f.
https://bugs.python.org/issue13120
-rw-r--r-- | Lib/test/test_pdb.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/test/test_pdb.py b/Lib/test/test_pdb.py index 7e03df0..56d8232 100644 --- a/Lib/test/test_pdb.py +++ b/Lib/test/test_pdb.py @@ -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(""" |