summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhelenyao <yaohelan@huawei.com>2016-12-07 02:20:56 -0500
committerhelenyao <yaohelan@huawei.com>2016-12-07 02:20:56 -0500
commitb6664d297b65a2e06610131e5036e3c37cae4356 (patch)
treed375fc55784bc6219e7e162e11f6dcba8ab3e105
parentc10898356f97b3f2e5c39928e4133570b75a52e1 (diff)
Bugfix: fix the wrong class name
JIRA: FUNCTEST-642 Fix the bug of patch: https://gerrit.opnfv.org/gerrit/#/c/25391/5/functest/ci/run_tests.py Change-Id: Iad2f1be32bdf0c391a40cd845ed2ca52ce8856f6 Signed-off-by: helenyao <yaohelan@huawei.com>
-rw-r--r--functest/ci/run_tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/functest/ci/run_tests.py b/functest/ci/run_tests.py
index 7de1577d4..d2a64aea1 100644
--- a/functest/ci/run_tests.py
+++ b/functest/ci/run_tests.py
@@ -140,7 +140,7 @@ def run_test(test, tier_name):
cls = getattr(module, run_dict['class'])
test_case = cls()
result = test_case.run()
- if (result == testcase_base.TestCasesBase.EX_OK and
+ if (result == testcase_base.TestcaseBase.EX_OK and
GlobalVariables.REPORT_FLAG):
result = test_case.push_to_db()
except ImportError: