diff options
author | SerenaFeng <feng.xiaowei@zte.com.cn> | 2017-03-22 18:50:32 +0800 |
---|---|---|
committer | Morgan Richomme <morgan.richomme@orange.com> | 2017-03-22 12:00:53 +0000 |
commit | c360865d91d3df279c74b2a81f84516784da723b (patch) | |
tree | 7631bc5e82a2ed3eccbf48be8bcf972d4ab7b845 | |
parent | e5834ebde8fd00cf60389bdc247c3d7c414d9b3a (diff) |
bugfix: fail to push odl-sfc test result to TestDB
'functest-odl-sfc"' will appear as [functest-odl-sfc"],
tailing with ", it is not defined in TestDB. led to
failure pushing
Change-Id: I43966236e25578aed12952710b22ba99e244cf56
Signed-off-by: SerenaFeng <feng.xiaowei@zte.com.cn>
(cherry picked from commit 3137017fd435547abdcc2df0d73be5f1b2ef443a)
-rw-r--r-- | functest/opnfv_tests/features/odl_sfc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/functest/opnfv_tests/features/odl_sfc.py b/functest/opnfv_tests/features/odl_sfc.py index 3b68d4204..1956c9c8e 100644 --- a/functest/opnfv_tests/features/odl_sfc.py +++ b/functest/opnfv_tests/features/odl_sfc.py @@ -14,7 +14,7 @@ class OpenDaylightSFC(base.FeatureBase): def __init__(self): super(OpenDaylightSFC, self).__init__(project='sfc', - case='functest-odl-sfc"', + case='functest-odl-sfc', repo='dir_repo_sfc') dir_sfc_functest = '{}/sfc/tests/functest'.format(self.repo) self.cmd = 'cd %s && python ./run_tests.py' % dir_sfc_functest |