Skip to content

Commit a3dc3c3

Browse files
committed
fix test
1 parent 4027544 commit a3dc3c3

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Lib/test/test_pdb.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3497,20 +3497,20 @@ def test_pdb_issue_142834():
34973497
... '',
34983498
... ]):
34993499
... test_function()
3500-
> <doctest test.test_pdb.test_pdb_issue_gh_xxx[0]>(2)test_function()
3500+
> <doctest test.test_pdb.test_pdb_issue_142834[0]>(2)test_function()
35013501
-> import pdb; pdb.Pdb(nosigint=True, readrc=False).set_trace()
35023502
(Pdb) break 4
3503-
Breakpoint 1 at <doctest test.test_pdb.test_pdb_issue_gh_xxx[0]>:4
3503+
Breakpoint 1 at <doctest test.test_pdb.test_pdb_issue_142834[0]>:4
35043504
(Pdb) break 3
3505-
Breakpoint 2 at <doctest test.test_pdb.test_pdb_issue_gh_xxx[0]>:3
3505+
Breakpoint 2 at <doctest test.test_pdb.test_pdb_issue_142834[0]>:3
35063506
(Pdb) clear 2
3507-
Deleted breakpoint 2 at <doctest test.test_pdb.test_pdb_issue_gh_xxx[0]>:3
3507+
Deleted breakpoint 2 at <doctest test.test_pdb.test_pdb_issue_142834[0]>:3
35083508
(Pdb) commands
35093509
(com) p "success"
35103510
(com) end
35113511
(Pdb) continue
35123512
'success'
3513-
> <doctest test.test_pdb.test_pdb_issue_gh_xxx[0]>(4)test_function()
3513+
> <doctest test.test_pdb.test_pdb_issue_142834[0]>(4)test_function()
35143514
-> bar = 2
35153515
(Pdb)
35163516
"""

0 commit comments

Comments
 (0)