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