Commit 28332bb0 authored by Romain Courteaud's avatar Romain Courteaud

slapos_configurator: change module id generator

parent 453f16b8
...@@ -39,7 +39,7 @@ class TestSlapOSConfigurator(SlapOSTestCaseMixin): ...@@ -39,7 +39,7 @@ class TestSlapOSConfigurator(SlapOSTestCaseMixin):
self.portal.portal_ids.fixConsistency() self.portal.portal_ids.fixConsistency()
self.assertEqual(self.portal.portal_ids.checkConsistency(), []) self.assertEqual(self.portal.portal_ids.checkConsistency(), [])
self.assertEqual(self.portal.person_module.getIdGenerator(), self.assertEqual(self.portal.person_module.getIdGenerator(),
"_generatePerDayId") "_generatePerDayNodeNumberId")
def testConfiguredShacacheWebSite(self): def testConfiguredShacacheWebSite(self):
""" Make sure Shacache WebSite is setuped by Alarm """ Make sure Shacache WebSite is setuped by Alarm
...@@ -148,7 +148,7 @@ class TestSlapOSConfigurator(SlapOSTestCaseMixin): ...@@ -148,7 +148,7 @@ class TestSlapOSConfigurator(SlapOSTestCaseMixin):
""" """
module_list = [module.getId() for module in self.portal.objectValues() module_list = [module.getId() for module in self.portal.objectValues()
if getattr(module, "getIdGenerator", None) is not None and \ if getattr(module, "getIdGenerator", None) is not None and \
module.getIdGenerator() == "_generatePerDayId"] module.getIdGenerator() == "_generatePerDayNodeNumberId"]
expected_module_list = [ expected_module_list = [
'access_token_module', 'access_token_module',
'account_module', 'account_module',
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment