summaryrefslogtreecommitdiff
path: root/testing/test_pluginmanager.py
diff options
context:
space:
mode:
authorDaniel Hahler <git@thequod.de>2020-01-16 19:42:29 +0100
committerDaniel Hahler <git@thequod.de>2020-01-16 21:12:48 +0100
commit5049e25a6aabf1cbbff53a88bbc398f1143bba92 (patch)
tree3098c2854738656d54642c02d9e0d0309a1a73f3 /testing/test_pluginmanager.py
parentd36c712bb05fdae02651a61cea18e67d4efc76f8 (diff)
downloadpytest-5049e25a6aabf1cbbff53a88bbc398f1143bba92.tar.gz
tests: cleanup unused fixtures
Diffstat (limited to 'testing/test_pluginmanager.py')
-rw-r--r--testing/test_pluginmanager.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/test_pluginmanager.py b/testing/test_pluginmanager.py
index 836b458c6..e3402d207 100644
--- a/testing/test_pluginmanager.py
+++ b/testing/test_pluginmanager.py
@@ -71,7 +71,7 @@ class TestPytestPluginInteractions:
values = []
class A:
- def pytest_configure(self, config):
+ def pytest_configure(self):
values.append(self)
config.pluginmanager.register(A())