aboutsummaryrefslogtreecommitdiffstats
path: root/functest/core
diff options
context:
space:
mode:
authorMorgan Richomme <morgan.richomme@orange.com>2017-05-05 11:35:44 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-05-05 11:35:44 +0000
commite416229fbf11819f5377b2bd810f6fc0583fef42 (patch)
treeccbf3f4c8169e1d47b708b1ef8dfda328a7223cf /functest/core
parent94807a8c352cf49df156f7f50f2a21df7ba34115 (diff)
parenta91b49fca69922d2401ba2a55fa867a5385b56cc (diff)
Merge "Replace project_name by case_name in result file name"
Diffstat (limited to 'functest/core')
-rw-r--r--functest/core/feature.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/functest/core/feature.py b/functest/core/feature.py
index ed9efc70..8563c925 100644
--- a/functest/core/feature.py
+++ b/functest/core/feature.py
@@ -32,7 +32,7 @@ class Feature(base.TestCase):
def __init__(self, **kwargs):
super(Feature, self).__init__(**kwargs)
self.result_file = "{}/{}.log".format(
- CONST.__getattribute__('dir_results'), self.project_name)
+ CONST.__getattribute__('dir_results'), self.case_name)
def execute(self, **kwargs):
"""Execute the Python method.