From f6bde7b46bb09aa13cb35049716bd7e1fc5b7774 Mon Sep 17 00:00:00 2001 From: Girish Shilamkar Date: Wed, 13 Aug 2014 17:37:54 +0530 Subject: [PATCH] CLOUDSTACK-7284: Fixed string issue in test_snapshots.py --- test/integration/component/test_snapshots.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/integration/component/test_snapshots.py b/test/integration/component/test_snapshots.py index 81a067ffe51..b601f9a2727 100644 --- a/test/integration/component/test_snapshots.py +++ b/test/integration/component/test_snapshots.py @@ -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