From 2b22022f928edf1ee9079079b860fa4a57cf471c Mon Sep 17 00:00:00 2001 From: SrikanteswaraRao Talluri Date: Tue, 25 Nov 2014 19:14:17 +0530 Subject: [PATCH] CLOUDSTACK-7865:Wrongly skipping the test if the local storage is enabled. Signed-off-by: SrikanteswaraRao Talluri --- test/integration/component/maint/test_bugs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/component/maint/test_bugs.py b/test/integration/component/maint/test_bugs.py index 24dbee2d62f..f68c244e115 100644 --- a/test/integration/component/maint/test_bugs.py +++ b/test/integration/component/maint/test_bugs.py @@ -169,7 +169,7 @@ class Test42xBugsMgmtSvr(cloudstackTestCase): step4: check whether the data disk created in step3 is created on local storage with tag 'loc' """ - if self.zone.localstorageenabled: + if not self.zone.localstorageenabled: self.skipTest('Local storage is not enable for this ' 'zone. skipping')