tests: fix duplicated entries in TestVMsCollection
Deduplicate entries when iterating over TestVMsCollection values. Some tests add given VM multiple times, to have it available under different kind of keys (name, uuid etc) - similar to the real VMsCollection.
Cette révision appartient à :
Parent
24e0ddd7ab
révision
ed5b908371
@ -56,7 +56,7 @@ class TestVMsCollection(dict):
|
||||
self.clear()
|
||||
|
||||
def __iter__(self):
|
||||
return iter(self.values())
|
||||
return iter(set(self.values()))
|
||||
|
||||
class TestVolume(object):
|
||||
def __init__(self, pool):
|
||||
|
||||
Chargement…
Référencer dans un nouveau ticket
Block a user