diff --git a/inventory_provider/opsdb.py b/inventory_provider/opsdb.py index 5d3541a3220ef7ad8f9c7df6f54a1a3850fc7bbd..c400b432b6eb8147360d2137bddc8e060fbabd77 100644 --- a/inventory_provider/opsdb.py +++ b/inventory_provider/opsdb.py @@ -244,14 +244,14 @@ def get_circuits(db): return r -def get_circuit_hierarchy(db): # pragma: no cover +def get_circuit_hierarchy(db): with cursor(db) as crs: crs.execute(circuit_hierarchy_query) r = _convert_to_dict(crs) return r -def get_equipment_location_data(db): # pragma: no cover +def get_equipment_location_data(db): with cursor(db) as crs: crs.execute(equipment_location_query) r = _convert_to_dict(crs)