summaryrefslogtreecommitdiff
path: root/testing/test_pdb.py
diff options
context:
space:
mode:
authorDaniel Hahler <git@thequod.de>2019-05-14 06:51:30 +0200
committerDaniel Hahler <git@thequod.de>2019-05-14 06:51:30 +0200
commitf8e1d58e8f3552b5e0473a735f501f6b147c8b85 (patch)
tree8ca2fcf6632049cb0e379305a8b15bd918154ffe /testing/test_pdb.py
parent0b8b006db49371fe70e51828454d95a0aaa016e3 (diff)
downloadpytest-f8e1d58e8f3552b5e0473a735f501f6b147c8b85.tar.gz
minor: settrace != set_trace
Diffstat (limited to 'testing/test_pdb.py')
-rw-r--r--testing/test_pdb.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/testing/test_pdb.py b/testing/test_pdb.py
index 3b21bacd9..b9c216eaf 100644
--- a/testing/test_pdb.py
+++ b/testing/test_pdb.py
@@ -817,7 +817,7 @@ class TestPDB(object):
result.stdout.fnmatch_lines(["*NameError*xxx*", "*1 error*"])
assert custom_pdb_calls == []
- def test_pdb_custom_cls_with_settrace(self, testdir, monkeypatch):
+ def test_pdb_custom_cls_with_set_trace(self, testdir, monkeypatch):
testdir.makepyfile(
custom_pdb="""
class CustomPdb(object):
@@ -1129,14 +1129,14 @@ def test_pdbcls_via_local_module(testdir):
p1 = testdir.makepyfile(
"""
def test():
- print("before_settrace")
+ print("before_set_trace")
__import__("pdb").set_trace()
""",
mypdb="""
class Wrapped:
class MyPdb:
def set_trace(self, *args):
- print("settrace_called", args)
+ print("set_trace_called", args)
def runcall(self, *args, **kwds):
print("runcall_called", args, kwds)
@@ -1157,7 +1157,7 @@ def test_pdbcls_via_local_module(testdir):
str(p1), "--pdbcls=mypdb:Wrapped.MyPdb", syspathinsert=True
)
assert result.ret == 0
- result.stdout.fnmatch_lines(["*settrace_called*", "* 1 passed in *"])
+ result.stdout.fnmatch_lines(["*set_trace_called*", "* 1 passed in *"])
# Ensure that it also works with --trace.
result = testdir.runpytest(