mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-01-19 11:16:24 +00:00
Accept positional and keyword arguments and pass them on.
This commit is contained in:
parent
135462ccd3
commit
50867bec8b
@ -151,8 +151,8 @@ class EliotLoggedRunTest(object):
|
||||
def eliot_logger(self, value):
|
||||
self.case.eliot_logger = value
|
||||
|
||||
def addCleanup(self, f):
|
||||
return self.case.addCleanup(f)
|
||||
def addCleanup(self, *a, **kw):
|
||||
return self.case.addCleanup(*a, **kw)
|
||||
|
||||
def id(self):
|
||||
return self.case.id()
|
||||
|
Loading…
Reference in New Issue
Block a user