[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
+2 -2
View File
@@ -111,9 +111,9 @@ class TestGatewayManagerPopen:
assert l[0].startswith(curwd)
assert l[0].endswith("hello")
def pytest_pyfuncarg_source(pyfuncitem):
def pytest_funcarg_source(pyfuncitem):
return py.test.ensuretemp(pyfuncitem.getmodpath()).mkdir("source")
def pytest_pyfuncarg_dest(pyfuncitem):
def pytest_funcarg_dest(pyfuncitem):
return py.test.ensuretemp(pyfuncitem.getmodpath()).mkdir("dest")
class TestHRSync: