From 75ebc03693fc85c182b6819c43243aa5b56c7f51 Mon Sep 17 00:00:00 2001 From: SrikanteswaraRao Talluri Date: Mon, 6 Jan 2014 19:44:20 +0530 Subject: [PATCH] CLOUDSTACK-5797: Fixed integration test for test_03_restore_vm_with_new_template --- test/integration/component/test_base_image_updation.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/integration/component/test_base_image_updation.py b/test/integration/component/test_base_image_updation.py index 762016f972c..af968cc1de1 100644 --- a/test/integration/component/test_base_image_updation.py +++ b/test/integration/component/test_base_image_updation.py @@ -100,7 +100,7 @@ class Services: "name": "Public template - Xen", "ostype": "CentOS 5.3 (64-bit)", "url": "http://download.cloud.com/releases/2.0.0/UbuntuServer-10-04-64bit.vhd.bz2", - "hypervisor": "XenServer", + "hypervisor": "xenserver", "format": "VHD", "isfeatured": True, "ispublic": True, @@ -111,7 +111,7 @@ class Services: "name": "Public template -KVM", "ostype": "CentOS 5.3 (64-bit)", "url": "http://download.cloud.com/releases/2.0.0/UbuntuServer-10-04-64bit.qcow2.bz2", - "hypervisor": "KVM", + "hypervisor": "kvm", "format": "qcow2", "isfeatured": True, "ispublic": True, @@ -409,7 +409,7 @@ class TestBaseImageUpdate(cloudstackTestCase): hypervisor = host_list_validation_result[1].hypervisor for k, v in self.services["templates"].items(): - if k == hypervisor: + if k.lower() == hypervisor.lower(): # Register new template template = Template.register( self.apiclient,