Commit 1c8a9efa authored by Grégory Wisniewski's avatar Grégory Wisniewski

Applications no more requires named parameters.

git-svn-id: https://svn.erp5.org/repos/neo/trunk@1421 71dcc9de-d417-0410-9af5-da40c76e7ee4
parent 10598deb
...@@ -244,7 +244,7 @@ class MasterServerElectionTests(NeoTestBase): ...@@ -244,7 +244,7 @@ class MasterServerElectionTests(NeoTestBase):
def setUp(self): def setUp(self):
# create an application object # create an application object
config = self.getMasterConfiguration() config = self.getMasterConfiguration()
self.app = Application(**config) self.app = Application(config)
self.app.pt.clear() self.app.pt.clear()
self.app.em = Mock({"getConnectionList" : []}) self.app.em = Mock({"getConnectionList" : []})
self.app.finishing_transaction_dict = {} self.app.finishing_transaction_dict = {}
......
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