[svn r63359] change funcargs naming to use __

--HG--
branch : trunk
This commit is contained in:
hpk
2009-03-26 13:50:12 +01:00
parent 2c0ec27d1a
commit 662e6905ef
14 changed files with 32 additions and 32 deletions

View File

@@ -3,9 +3,9 @@ rsyncignore = ['c-extension/greenlet/build']
import py
class PylibTestconfigPlugin:
def pytest_funcarg_specssh(self, pyfuncitem):
def pytest_funcarg__specssh(self, pyfuncitem):
return getspecssh(pyfuncitem.config)
def pytest_funcarg_specsocket(self, pyfuncitem):
def pytest_funcarg__specsocket(self, pyfuncitem):
return getsocketspec(pyfuncitem.config)
def pytest_addoption(self, parser):