X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=Automation%2FTests%2FScripts%2Flog_scripts.py;h=4cc500968e5e5bcf43b7dc377bbe09ee59903d58;hb=24f194dd1cca6e70f02e46902152f69a6d0eef8b;hp=446ed11ab28ef90cd95c2de394628545bfbe3f71;hpb=35766cc8a70ee08c8cded89dee889d9e11036da5;p=ric-plt%2Fe2mgr.git diff --git a/Automation/Tests/Scripts/log_scripts.py b/Automation/Tests/Scripts/log_scripts.py index 446ed11..4cc5009 100644 --- a/Automation/Tests/Scripts/log_scripts.py +++ b/Automation/Tests/Scripts/log_scripts.py @@ -35,12 +35,12 @@ def verify_log_message(file_path, message): return False -def verify_redis_monitor_manipulation_message(file_path, ran_name, action): - message = "\"PUBLISH\" \"{e2Manager},RAN_MANIPULATION\" \"" + ran_name + "_" + action + "\"" +def verify_redis_monitor_manipulation_message(file_path, ran_name, event): + message = "\"PUBLISH\" \"{e2Manager},RAN_MANIPULATION\" \"" + ran_name + "_" + event + "\"" return verify_log_message(file_path, message) -def verify_redis_monitor_connection_status_message(file_path, ran_name, status): - message = "\"PUBLISH\" \"{e2Manager},RAN_CONNECTION_STATUS_CHANGE\" \"" + ran_name + "_" + status + "\"" +def verify_redis_monitor_connection_status_message(file_path, ran_name, event): + message = "\"PUBLISH\" \"{e2Manager},RAN_CONNECTION_STATUS_CHANGE\" \"" + ran_name + "_" + event + "\"" return verify_log_message(file_path, message)