diff options
-rwxr-xr-x | functest/opnfv_tests/openstack/refstack_client/refstack_client.py | 2 | ||||
-rwxr-xr-x | functest/opnfv_tests/openstack/refstack_client/tempest_conf.py | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/functest/opnfv_tests/openstack/refstack_client/refstack_client.py b/functest/opnfv_tests/openstack/refstack_client/refstack_client.py index 101bf7360..37aa9e399 100755 --- a/functest/opnfv_tests/openstack/refstack_client/refstack_client.py +++ b/functest/opnfv_tests/openstack/refstack_client/refstack_client.py @@ -184,7 +184,7 @@ class RefstackClient(testcase.TestCase): self.source_venv() self._prep_test() self.run_defcore(self.confpath, self.testlist) - res = testcase.TestcaseBase.EX_OK + res = testcase.TestCase.EX_OK except Exception as e: logger.error('Error with run: %s', e) res = testcase.TestCase.EX_RUN_ERROR diff --git a/functest/opnfv_tests/openstack/refstack_client/tempest_conf.py b/functest/opnfv_tests/openstack/refstack_client/tempest_conf.py index 66876bbf4..5624ed79b 100755 --- a/functest/opnfv_tests/openstack/refstack_client/tempest_conf.py +++ b/functest/opnfv_tests/openstack/refstack_client/tempest_conf.py @@ -39,15 +39,15 @@ class TempestConf(object): def main(self): try: self.generate_tempestconf() - res = testcase.TestcaseBase.EX_OK + res = testcase.TestCase.EX_OK except Exception as e: logger.error('Error with run: %s', e) - res = testcase.TestcaseBase.EX_RUN_ERROR + res = testcase.TestCase.EX_RUN_ERROR return res if __name__ == '__main__': tempestconf = TempestConf() result = tempestconf.main() - if result != testcase.TestcaseBase.EX_OK: + if result != testcase.TestCase.EX_OK: sys.exit(result) |