diff options
author | Qiu Tingting <qiutt@fujitsu.com> | 2022-05-25 08:23:51 +0800 |
---|---|---|
committer | Qiu Tingting <qiutt@fujitsu.com> | 2022-05-25 08:23:51 +0800 |
commit | bd0eb0ec729a228a317d2966e0f71770ca4dd36f (patch) | |
tree | 2180440dbc77451074ed234b4ccefb2562b8c4ef /plugins/agl_test_conf.py | |
parent | 400b68ab68fb62a9ae6c7a6e70a2db22a6898e6b (diff) |
agl-test-framework: fix a bug for get_html_filenamelamprey_12.1.6lamprey_12.1.5lamprey/12.1.6lamprey/12.1.512.1.612.1.5
fix a bug for get_html_filename methond in agl_test_report.py
Bug-AGL: SPEC-4345
Signed-off-by: Qiu Tingting <qiutt@fujitsu.com>
Change-Id: Iea7dd4d09ab70189f59325fc0200486ae142f584
Diffstat (limited to 'plugins/agl_test_conf.py')
-rw-r--r-- | plugins/agl_test_conf.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/agl_test_conf.py b/plugins/agl_test_conf.py index 767d971..afffa68 100644 --- a/plugins/agl_test_conf.py +++ b/plugins/agl_test_conf.py @@ -53,7 +53,7 @@ def get_json_filename(test_set_name: str): #Get html file name for a test set : # /var/run/agl-test/logs/tmp-log/test-report/${test_set_name}/report.html def get_html_filename(test_set_name: str): - return TMP_TEST_REPORT + "/" + testname + "/report.html" + return TMP_TEST_REPORT + "/" + test_set_name + "/report.html" #Get test-report log dir for a test set : # /var/run/agl-test/logs/tmp-log/test-report/${test_set_name}/log |