Fix for test_contrail
diff --git a/cvp_checks/tests/test_contrail.py b/cvp_checks/tests/test_contrail.py
index d59a611..22242f7 100644
--- a/cvp_checks/tests/test_contrail.py
+++ b/cvp_checks/tests/test_contrail.py
@@ -21,6 +21,11 @@
for node in cs:
for line in cs[node].split('\n'):
line = line.strip()
+ if len (line.split(None, 1)) == 1:
+ err_msg = "{0}: {1}".format(
+ node, line)
+ broken_services.append(err_msg)
+ continue
name, status = line.split(None, 1)
if status not in {'active'}:
err_msg = "{node}:{service} - {status}".format(