diff options
author | Vincent Danno <vincent.danno@orange.com> | 2021-05-18 21:17:41 +0200 |
---|---|---|
committer | Vincent Danno <vincent.danno@orange.com> | 2021-05-18 21:26:42 +0200 |
commit | c9f92317cf20465987ff187733dd620e8d1fdc4f (patch) | |
tree | b164812a3beeb9e7377ab636c1b677dfeab1a369 /xtesting/utils | |
parent | d340a8e8f99fef80c5fa3a45c4e1b06e5b0aeb39 (diff) |
Use constants instead of hard-coding paths
This complements
https://gerrit.opnfv.org/gerrit/c/functest-xtesting/+/72495
which missed one occurence due to trailing slash difference.
Signed-off-by: Vincent Danno <vincent.danno@orange.com>
Change-Id: Iabfa89161cc099c924a7609aeb4ef6ed1b027cd3
Diffstat (limited to 'xtesting/utils')
-rw-r--r-- | xtesting/utils/constants.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xtesting/utils/constants.py b/xtesting/utils/constants.py index 7677f2e5..acd0d31d 100644 --- a/xtesting/utils/constants.py +++ b/xtesting/utils/constants.py @@ -6,7 +6,7 @@ import os ENV_FILE = '/var/lib/xtesting/conf/env_file' -RESULTS_DIR = '/var/lib/xtesting/results/' +RESULTS_DIR = '/var/lib/xtesting/results' LOG_PATH = os.path.join(RESULTS_DIR, 'xtesting.log') DEBUG_LOG_PATH = os.path.join(RESULTS_DIR, 'xtesting.debug.log') |