We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff264fc commit 834ca0aCopy full SHA for 834ca0a
testing/test_pdb.py
@@ -185,8 +185,8 @@ def test_check(self):
185
"--pdb {p1}::Blub::test_error {p1}::Blub::test_check".format(p1=p1)
186
)
187
child.expect("Pdb")
188
- child.sendline("p self.filename")
189
- child.expect("'debug.me'")
+ child.sendline("p 'filename=' + self.filename")
+ child.expect("'filename=debug.me'")
190
child.sendline("c")
191
rest = child.read().decode("utf8")
192
assert "= 1 failed, 1 passed in" in rest
0 commit comments