Copy latest code
[ric-plt/e2mgr.git] / Automation / Tests / Scripts / find_rmr_message.py
index 1d75e81..e75d9c6 100644 (file)
 #   limitations under the License.
 #
 ##############################################################################
+#
+#   This source code is part of the near-RT RIC (RAN Intelligent Controller)
+#   platform project (RICP).
+#
 
 
 def verify_logs(directory,filename,mtype,meid):
@@ -27,8 +31,12 @@ def verify_logs(directory,filename,mtype,meid):
 
     for l in f:
 
-        if l.find(mtype) > 0 and l.find(meid) > 0:
-            return True
+        if (meid is not None):
+            if l.find(mtype) > 0 and l.find(meid) > 0:
+                return True
+        else:
+            if l.find(mtype) > 0:
+                return True
 
     return False