Skip to content

Commit d096e7e

Browse files
author
Tareq
committed
removed the << >>
1 parent 4a5d4b0 commit d096e7e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Framework/Built_In_Automation/Sequential_Actions/common_functions.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -558,13 +558,13 @@ def step_exit(data_set):
558558
action_value in failed_tag_list
559559
): # Convert user specified pass/fail into standard result
560560
if msg:
561-
CommonUtil.ExecLog(sModuleInfo, f'<<<<< {msg} >>>>>', 3)
561+
CommonUtil.ExecLog(sModuleInfo, f'{msg}', 3)
562562
return "zeuz_failed"
563563
elif action_value in skipped_tag_list:
564564
return "skipped"
565565
elif action_value in passed_tag_list:
566566
if msg:
567-
CommonUtil.ExecLog(sModuleInfo, f'<<<<< {msg} >>>>>', 1)
567+
CommonUtil.ExecLog(sModuleInfo, f'{msg}', 1)
568568
return "passed"
569569
else:
570570
CommonUtil.ExecLog(sModuleInfo, "Step Result action has invalid VALUE", 3)

0 commit comments

Comments
 (0)