aboutsummaryrefslogtreecommitdiffstats
path: root/functest/core
diff options
context:
space:
mode:
authorCédric Ollivier <cedric.ollivier@orange.com>2017-05-05 13:01:20 +0200
committerCédric Ollivier <cedric.ollivier@orange.com>2017-05-05 13:01:20 +0200
commita91b49fca69922d2401ba2a55fa867a5385b56cc (patch)
treef038a759e08c28cf7c8331b3d57448103ff41b81 /functest/core
parent695b3013de3a5f80a3a0a55cddbb1d525a6a6b87 (diff)
Replace project_name by case_name in result file name
It avoids erasing functest.log when project_name = functest. Change-Id: Icae898abb8b51c89b79bb1124adfadab8b0b3b99 Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
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 ed9efc70b..8563c9257 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.