diff --git a/heat_integrationtests/functional/functional_base.py b/heat_integrationtests/functional/functional_base.py index 3dff3e459..452e05535 100644 --- a/heat_integrationtests/functional/functional_base.py +++ b/heat_integrationtests/functional/functional_base.py @@ -17,10 +17,10 @@ class FunctionalTestsBase(test.HeatIntegrationTest): def setUp(self): super(FunctionalTestsBase, self).setUp() - self.check_skip_test() + self.check_skip() self.client = self.orchestration_client - def check_skip_test(self): + def check_skip(self): test_cls_name = self.__class__.__name__ test_method_name = '.'.join([test_cls_name, self._testMethodName]) test_skipped = (self.conf.skip_functional_test_list and ( diff --git a/heat_integrationtests/scenario/scenario_base.py b/heat_integrationtests/scenario/scenario_base.py index 14b8cec4b..66069ff77 100644 --- a/heat_integrationtests/scenario/scenario_base.py +++ b/heat_integrationtests/scenario/scenario_base.py @@ -18,7 +18,7 @@ class ScenarioTestsBase(test.HeatIntegrationTest): def setUp(self): super(ScenarioTestsBase, self).setUp() - self.check_skip_test() + self.check_skip() self.client = self.orchestration_client self.sub_dir = 'templates' @@ -58,7 +58,7 @@ class ScenarioTestsBase(test.HeatIntegrationTest): return stack_id - def check_skip_test(self): + def check_skip(self): test_cls_name = self.__class__.__name__ test_method_name = '.'.join([test_cls_name, self._testMethodName]) test_skipped = (self.conf.skip_scenario_test_list and (