diff options
author | MatthewLi <matthew.lijun@huawei.com> | 2017-03-28 22:05:59 -0400 |
---|---|---|
committer | MatthewLi <matthew.lijun@huawei.com> | 2017-03-28 22:07:24 -0400 |
commit | d2b8732ef3670586e28c40f5cec4e1ff42e22d37 (patch) | |
tree | 7b23651f2a0c307dfeb9dc7107356de597352acf /functest/opnfv_tests/openstack/refstack_client/refstack_client.py | |
parent | 0385fdaa5b8b39c2cbc75c7d7719d872b317e0b9 (diff) |
refstack: bugfix of name TestCase
JIRA: FUNCTEST-758
Change-Id: I1b90597c9745faa67afa58e5653f72411a95aa3d
Signed-off-by: MatthewLi <matthew.lijun@huawei.com>
Diffstat (limited to 'functest/opnfv_tests/openstack/refstack_client/refstack_client.py')
-rwxr-xr-x | functest/opnfv_tests/openstack/refstack_client/refstack_client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/functest/opnfv_tests/openstack/refstack_client/refstack_client.py b/functest/opnfv_tests/openstack/refstack_client/refstack_client.py index 101bf736..37aa9e39 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 |