mirror of https://github.com/apache/cloudstack.git
CLOUDSTACK-7284: Fixed string issue in test_snapshots.py
This commit is contained in:
parent
31fbb20648
commit
f6bde7b46b
|
|
@ -231,7 +231,7 @@ class TestSnapshots(cloudstackTestCase):
|
|||
|
||||
def setUp(self):
|
||||
self.apiclient = self.testClient.getApiClient()
|
||||
self.hypervisor = self.testClient.getHypervisorInfo()
|
||||
self.hypervisor = str(self.testClient.getHypervisorInfo()).lower()
|
||||
self.dbclient = self.testClient.getDbConnection()
|
||||
self.cleanup = []
|
||||
return
|
||||
|
|
@ -1172,7 +1172,7 @@ class TestSnapshotEvents(cloudstackTestCase):
|
|||
|
||||
def setUp(self):
|
||||
self.apiclient = self.testClient.getApiClient()
|
||||
self.hypervisor = self.testClient.getHypervisorInfo()
|
||||
self.hypervisor = str(self.testClient.getHypervisorInfo()).lower()
|
||||
self.dbclient = self.testClient.getDbConnection()
|
||||
self.cleanup = []
|
||||
return
|
||||
|
|
|
|||
Loading…
Reference in New Issue