Commit 9dc64e5e authored by Vincent Pelletier's avatar Vincent Pelletier

Fix a forgotten getPrimaryMaster call on self.


git-svn-id: https://svn.erp5.org/repos/neo/branches/prototype3@1196 71dcc9de-d417-0410-9af5-da40c76e7ee4
parent 1ac242d1
...@@ -167,7 +167,7 @@ class MasterTests(unittest.TestCase): ...@@ -167,7 +167,7 @@ class MasterTests(unittest.TestCase):
# Check that the third master is running under his known UUID. # Check that the third master is running under his known UUID.
self.expectMasterState(third_master.getUUID(), protocol.RUNNING_STATE) self.expectMasterState(third_master.getUUID(), protocol.RUNNING_STATE)
# Check that the primary master didn't change. # Check that the primary master didn't change.
self.assertEqual(self.getPrimaryMaster(), first_master_uuid) self.assertEqual(neo.getPrimaryMaster(), first_master_uuid)
def test_suite(): def test_suite():
return unittest.makeSuite(MasterTests) return unittest.makeSuite(MasterTests)
......
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