We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a5d4b0 commit d096e7eCopy full SHA for d096e7e
1 file changed
Framework/Built_In_Automation/Sequential_Actions/common_functions.py
@@ -558,13 +558,13 @@ def step_exit(data_set):
558
action_value in failed_tag_list
559
): # Convert user specified pass/fail into standard result
560
if msg:
561
- CommonUtil.ExecLog(sModuleInfo, f'<<<<< {msg} >>>>>', 3)
+ CommonUtil.ExecLog(sModuleInfo, f'{msg}', 3)
562
return "zeuz_failed"
563
elif action_value in skipped_tag_list:
564
return "skipped"
565
elif action_value in passed_tag_list:
566
567
- CommonUtil.ExecLog(sModuleInfo, f'<<<<< {msg} >>>>>', 1)
+ CommonUtil.ExecLog(sModuleInfo, f'{msg}', 1)
568
return "passed"
569
else:
570
CommonUtil.ExecLog(sModuleInfo, "Step Result action has invalid VALUE", 3)
0 commit comments