Repository: cloudstack Updated Branches: refs/heads/master cd2f27a66 -> 1cf1abcf4
Fixed key error in test_snapshots.py Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/1cf1abcf Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/1cf1abcf Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/1cf1abcf Branch: refs/heads/master Commit: 1cf1abcf4775efde619a9af9a38480129a51fcd2 Parents: cd2f27a Author: Gaurav Aradhye <[email protected]> Authored: Thu Jul 31 15:33:10 2014 +0530 Committer: Girish Shilamkar <[email protected]> Committed: Thu Jul 31 20:48:34 2014 +0530 ---------------------------------------------------------------------- test/integration/component/test_snapshots.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/1cf1abcf/test/integration/component/test_snapshots.py ---------------------------------------------------------------------- diff --git a/test/integration/component/test_snapshots.py b/test/integration/component/test_snapshots.py index f874bd3..81a067f 100644 --- a/test/integration/component/test_snapshots.py +++ b/test/integration/component/test_snapshots.py @@ -961,7 +961,7 @@ class TestCreateVMSnapshotTemplate(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
