From 4737a9e27fe3d86643409b2e42e07f000190d9e2 Mon Sep 17 00:00:00 2001 From: Gaurav Aradhye Date: Fri, 22 May 2015 15:36:17 +0530 Subject: [PATCH] CLOUDSTACK-8492: Fix string case issue --- test/integration/component/test_snapshots.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/component/test_snapshots.py b/test/integration/component/test_snapshots.py index 4ff5411ed018..655a287b5601 100644 --- a/test/integration/component/test_snapshots.py +++ b/test/integration/component/test_snapshots.py @@ -169,7 +169,7 @@ def setUpClass(cls): cls.services['mode'] = cls.zone.networktype cls._cleanup = [] cls.unsupportedHypervisor = False - cls.hypervisor = get_hypervisor_type(cls.api_client) + cls.hypervisor = str(get_hypervisor_type(cls.api_client)).lower() if cls.hypervisor.lower() in ['hyperv', 'lxc']: cls.unsupportedHypervisor = True return