diff options
author | Ryota MIBU <r-mibu@cq.jp.nec.com> | 2017-10-04 16:26:33 +0000 |
---|---|---|
committer | Ryota MIBU <r-mibu@cq.jp.nec.com> | 2017-10-04 16:26:33 +0000 |
commit | 589a60fcd004ee59716273b30cea69aa7b5d102b (patch) | |
tree | 16fe553360d555df7bb890be4c56b0e3c6a198d5 /doctor_tests/scenario | |
parent | 9f91aba7ef33d7ad88c3bd004fdf7c5fef65f151 (diff) |
fix the way to get log filename
Change-Id: I9ce494c408c99e1a76a6b485db29a72c3134e487
Signed-off-by: Ryota MIBU <r-mibu@cq.jp.nec.com>
Diffstat (limited to 'doctor_tests/scenario')
-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) |