Show More
@@ -195,7 +195,12 class TestClient(ClusterTestCase): | |||||
195 | self.assertTrue(isinstance(allqs, dict)) |
|
195 | self.assertTrue(isinstance(allqs, dict)) | |
196 | intkeys = list(allqs.keys()) |
|
196 | intkeys = list(allqs.keys()) | |
197 | intkeys.remove('unassigned') |
|
197 | intkeys.remove('unassigned') | |
198 | self.assertEqual(sorted(intkeys), sorted(self.client.ids)) |
|
198 | print("intkeys", intkeys) | |
|
199 | intkeys = sorted(intkeys) | |||
|
200 | ids = self.client.ids | |||
|
201 | print("client.ids", ids) | |||
|
202 | ids = sorted(self.client.ids) | |||
|
203 | self.assertEqual(intkeys, ids) | |||
199 | unassigned = allqs.pop('unassigned') |
|
204 | unassigned = allqs.pop('unassigned') | |
200 | for eid,qs in allqs.items(): |
|
205 | for eid,qs in allqs.items(): | |
201 | self.assertTrue(isinstance(qs, dict)) |
|
206 | self.assertTrue(isinstance(qs, dict)) |
General Comments 0
You need to be logged in to leave comments.
Login now