diff --git a/IPython/core/tests/test_debugger.py b/IPython/core/tests/test_debugger.py index 171f03d..d5ccfba 100644 --- a/IPython/core/tests/test_debugger.py +++ b/IPython/core/tests/test_debugger.py @@ -400,12 +400,15 @@ def test_decorator_skip(): child = _decorator_skip_setup() + child.expect_exact("ipython-input-8") child.expect_exact("3 bar(3, 4)") child.expect("ipdb>") child.expect("ipdb>") child.sendline("step") child.expect_exact("step") + child.expect_exact("--Call--") + child.expect_exact("ipython-input-6") child.expect_exact("1 @pdb_skipped_decorator")