tests: cleanup unused fixtures

This commit is contained in:
Daniel Hahler
2020-01-16 19:42:29 +01:00
parent d36c712bb0
commit 5049e25a6a
17 changed files with 35 additions and 35 deletions
+3 -3
View File
@@ -463,7 +463,7 @@ class TestPDB:
child.read()
self.flush(child)
def test_pdb_interaction_doctest(self, testdir, monkeypatch):
def test_pdb_interaction_doctest(self, testdir):
p1 = testdir.makepyfile(
"""
def function_1():
@@ -489,7 +489,7 @@ class TestPDB:
assert "1 failed" in rest
self.flush(child)
def test_doctest_set_trace_quit(self, testdir, monkeypatch):
def test_doctest_set_trace_quit(self, testdir):
p1 = testdir.makepyfile(
"""
def function_1():
@@ -833,7 +833,7 @@ class TestPDB:
]
)
def test_pdb_validate_usepdb_cls(self, testdir):
def test_pdb_validate_usepdb_cls(self):
assert _validate_usepdb_cls("os.path:dirname.__name__") == (
"os.path",
"dirname.__name__",