Fix doctest failure introduced by r57949.
The formatting of errors from pdb's own print command is different from the formatting of errors when pdb exec's an arbitrary command; the introduction of print as a pdb command caused this test to use the former instead of the latter, causing the test to fail.
This commit is contained in:
parent
45c078736e
commit
fd4a7de172
|
@ -1792,7 +1792,7 @@ def test_pdb_set_trace_nested():
|
||||||
> <doctest foo[1]>(1)<module>()
|
> <doctest foo[1]>(1)<module>()
|
||||||
-> calls_set_trace()
|
-> calls_set_trace()
|
||||||
(Pdb) print(foo)
|
(Pdb) print(foo)
|
||||||
*** NameError: name 'foo' is not defined
|
*** NameError: NameError("name 'foo' is not defined",)
|
||||||
(Pdb) continue
|
(Pdb) continue
|
||||||
(0, 2)
|
(0, 2)
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in New Issue