lf_check.py : fixed report index reference

Signed-off-by: Chuck SmileyRekiere <chuck.smileyrekiere@candelatech.com>
This commit is contained in:
Chuck SmileyRekiere
2022-03-04 08:44:05 -07:00
committed by shivam
parent f8d0949d94
commit a9dc04a0d6

View File

@@ -960,8 +960,8 @@ QA Report Dashboard: lf_qa.py was not run as last script of test suite"""
# #
for line in stdout_log_fd: for line in stdout_log_fd:
if "Report Location" in line: if "Report Location" in line:
report_index += 1 self.report_index += 1
if iteration == report_index: if iteration == self.report_index:
meta_data_path = line.replace('"', '') meta_data_path = line.replace('"', '')
meta_data_path = meta_data_path.replace( meta_data_path = meta_data_path.replace(
'Report Location:::', '') 'Report Location:::', '')