[svn r63846] fix bug

--HG--
branch : trunk
This commit is contained in:
hpk 2009-04-08 17:19:46 +02:00
parent b6b060c1d0
commit c6606d9d8f
2 changed files with 2 additions and 2 deletions

View File

@ -48,7 +48,7 @@ class PluginHooks:
# runtest related hooks
# ------------------------------------------------------------------------------
def pytest_pyfunc_call(self, call, pyfuncitem, args, kwargs):
def pytest_pyfunc_call(self, pyfuncitem, args, kwargs):
""" return True if we consumed/did the call to the python function item. """
def pytest_item_makereport(self, item, excinfo, when, outerr):

View File

@ -1,5 +1,5 @@
import py
from outcome import Skipped
from py.__.test.outcome import Skipped
class RunnerPlugin:
def pytest_configure(self, config):