Accept positional and keyword arguments and pass them on.

This commit is contained in:
Jean-Paul Calderone 2019-03-15 15:13:20 -04:00
parent 135462ccd3
commit 50867bec8b

View File

@ -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()