[svn r63338] rename pyfuncarg to funcarg

--HG--
branch : trunk
This commit is contained in:
hpk
2009-03-26 10:16:30 +01:00
parent ee902a2d06
commit 8230a39b39
12 changed files with 33 additions and 33 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ class TestTracebackCutting:
def test_traceback_argsetup(self, testdir):
testdir.makeconftest("""
class ConftestPlugin:
def pytest_pyfuncarg_hello(self, pyfuncitem):
def pytest_funcarg_hello(self, pyfuncitem):
raise ValueError("xyz")
""")
p = testdir.makepyfile("def test(hello): pass")