test: fix method signature in test suite base class
just making pylint happy
This commit is contained in:
parent
e12c523176
commit
c45f7482a6
1 changed files with 2 additions and 2 deletions
|
|
@ -139,7 +139,7 @@ class VersionWebTestCase(WebTestCase):
|
||||||
continuum.versioning_manager.transaction_cls = continuum.TransactionFactory()
|
continuum.versioning_manager.transaction_cls = continuum.TransactionFactory()
|
||||||
self.teardown_web()
|
self.teardown_web()
|
||||||
|
|
||||||
def make_config(self, **kwargs):
|
def make_config(self, files=None, **kwargs):
|
||||||
"""
|
"""
|
||||||
Make and customize the config object.
|
Make and customize the config object.
|
||||||
|
|
||||||
|
|
@ -149,7 +149,7 @@ class VersionWebTestCase(WebTestCase):
|
||||||
WuttaContinuumConfigExtension,
|
WuttaContinuumConfigExtension,
|
||||||
)
|
)
|
||||||
|
|
||||||
config = super().make_config(**kwargs)
|
config = super().make_config(files, **kwargs)
|
||||||
config.setdefault("wutta_continuum.enable_versioning", "true")
|
config.setdefault("wutta_continuum.enable_versioning", "true")
|
||||||
|
|
||||||
# nb. must purge model classes from sys.modules, so they will
|
# nb. must purge model classes from sys.modules, so they will
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue