summaryrefslogtreecommitdiff
path: root/_pytest/nose.py
diff options
context:
space:
mode:
authorholger krekel <holger@merlinux.eu>2015-05-06 10:08:08 +0200
committerholger krekel <holger@merlinux.eu>2015-05-06 10:08:08 +0200
commitbddc88f09e26051784712a9948af938517ef0546 (patch)
tree91450a9a65859e81d1a7a379dd965b3741f64fe6 /_pytest/nose.py
parent5ea7f0342bb821b51e7907ecba08e7250e5cacd4 (diff)
downloadpytest-bddc88f09e26051784712a9948af938517ef0546.tar.gz
adapt to pluggy naming, rename pytest.hookspec_opts to pytest.hookspec,s ame with hookimpl_opts
--HG-- branch : pluggy1
Diffstat (limited to '_pytest/nose.py')
-rw-r--r--_pytest/nose.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/_pytest/nose.py b/_pytest/nose.py
index feb6b8b90..038746868 100644
--- a/_pytest/nose.py
+++ b/_pytest/nose.py
@@ -24,7 +24,7 @@ def pytest_runtest_makereport(item, call):
call.excinfo = call2.excinfo
-@pytest.hookimpl_opts(trylast=True)
+@pytest.hookimpl(trylast=True)
def pytest_runtest_setup(item):
if is_potential_nosetest(item):
if isinstance(item.parent, pytest.Generator):