diff options
author | Ryota Mibu <r-mibu@cq.jp.nec.com> | 2017-10-04 16:30:49 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-10-04 16:30:49 +0000 |
commit | 171f4b42c7d6e179a987b98b46d8c9ae6f2fc36d (patch) | |
tree | d2ad431a09065408cea096bedcd21e193594c003 /doctor_tests/scenario/common.py | |
parent | 1bec48cd10057821828ffca3f5ecf31b853c66f7 (diff) | |
parent | 589a60fcd004ee59716273b30cea69aa7b5d102b (diff) |
Merge "fix the way to get log filename"
Diffstat (limited to 'doctor_tests/scenario/common.py')
-rw-r--r-- | doctor_tests/scenario/common.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/doctor_tests/scenario/common.py b/doctor_tests/scenario/common.py index 9344dcaf..ebf0cf58 100644 --- a/doctor_tests/scenario/common.py +++ b/doctor_tests/scenario/common.py @@ -11,10 +11,7 @@ import os from doctor_tests.common.utils import match_rep_in_file -def calculate_notification_time(): - scenario_dir = os.path.split(os.path.realpath(__file__))[0] - doctor_tests_dir = os.path.dirname(scenario_dir) - log_file = '{0}/{1}'.format(doctor_tests_dir, 'doctor.log') +def calculate_notification_time(log_file): reg = '(?<=doctor monitor detected at )\d+.\d+' result = match_rep_in_file(reg, log_file) |