Improve test tag string parsing
[csit.git] / resources / libraries / python / honeycomb / BGP.py
index fa51b87..976e41d 100644 (file)
@@ -13,7 +13,7 @@
 
 """Keywords to manipulate BGP configuration using Honeycomb REST API."""
 
-from resources.libraries.python.constants import Constants as Const
+from resources.libraries.python.Constants import Constants as Const
 from resources.libraries.python.HTTPRequest import HTTPCodes
 from resources.libraries.python.honeycomb.HoneycombSetup import HoneycombError
 from resources.libraries.python.honeycomb.HoneycombUtil \
@@ -392,4 +392,5 @@ class BGPKeywords(object):
         for item in ref:
             if item not in data:
                 raise HoneycombError(
-                    "RIB entry {0} not found in operational data.")
+                    "RIB entry {0} not found in operational data {1}."
+                    .format(item, data))