From 90d5d47a9aaf88e553a4ef4b1d8e37178167bb76 Mon Sep 17 00:00:00 2001 From: Andrea Frittoli Date: Tue, 1 Aug 2017 06:58:03 +0100 Subject: [PATCH] Refine skip messages Fix a few nits in skip messages. Change-Id: Ie2da617839983f71dab459ce5afa698ad21441a9 --- .../scenario/application_catalog/test_cinder_volumes.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/murano_tempest_tests/tests/scenario/application_catalog/test_cinder_volumes.py b/murano_tempest_tests/tests/scenario/application_catalog/test_cinder_volumes.py index b3b42cd7b..4ee0a573e 100644 --- a/murano_tempest_tests/tests/scenario/application_catalog/test_cinder_volumes.py +++ b/murano_tempest_tests/tests/scenario/application_catalog/test_cinder_volumes.py @@ -30,12 +30,12 @@ class TestCinderVolumes(base.BaseApplicationCatalogScenarioTest): def skip_checks(cls): super(TestCinderVolumes, cls).skip_checks() if not CONF.service_available.cinder: - msg = "Cinder is not available. Skipping volumes attachment tests" + msg = "Cinder is not available. Skipping volumes tests" raise cls.skipException(msg) if (not CONF.volume_feature_enabled.api_v3 and not CONF.volume_feature_enabled.api_v2): - msg = ("Neither cinder v2 nor v3 are not available. Skipping" - "volumes attachment tests") + msg = ("Neither cinder v2 nor v3 are available. Skipping" + "volumes tests") raise cls.skipException(msg) @classmethod @@ -53,7 +53,7 @@ class TestCinderVolumes(base.BaseApplicationCatalogScenarioTest): @classmethod def resource_setup(cls): if not CONF.application_catalog.cinder_volume_tests: - msg = "Cinder volumes attachment tests will be skipped." + msg = "Cinder volumes tests will be skipped." raise cls.skipException(msg) super(TestCinderVolumes, cls).resource_setup() cls.linux = CONF.application_catalog.linux_image