- add changelog entry for restart-crashed-nodes

- fix a test which depended on dict ordering
- minor test cleanups
This commit is contained in:
holger krekel
2014-09-18 18:12:42 +02:00
parent b418f0701c
commit 3a75b754d0
3 changed files with 10 additions and 8 deletions

View File

@@ -109,10 +109,9 @@ class TestLoadScheduling:
def test_init_distribute_chunksize(self):
sched = LoadScheduling(2)
node1 = MockNode()
node2 = MockNode()
sched.addnode(node1)
sched.addnode(node2)
sched.addnode(MockNode())
sched.addnode(MockNode())
node1, node2 = sched.nodes
col = ["xyz"] * (6)
sched.addnode_collection(node1, col)
sched.addnode_collection(node2, col)