From 067de257e140ec4ec716368c69c80f9278743fb7 Mon Sep 17 00:00:00 2001 From: Jeffrey Rackauckas Date: Mon, 2 Jul 2018 21:03:21 -0700 Subject: [PATCH] Fix test_pdb.py with pexpect --- testing/test_pdb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/test_pdb.py b/testing/test_pdb.py index b550cca60..43a78908c 100644 --- a/testing/test_pdb.py +++ b/testing/test_pdb.py @@ -726,7 +726,7 @@ class TestTraceOption: """ ) child = testdir.spawn_pytest("--trace " + str(p1)) - child.expect("test_1") + child.expect("is_equal") child.expect("(Pdb)") child.sendeof() rest = child.read().decode("utf8")