Partial correction for unit test after merge

This commit is contained in:
Guille Gutierrez 2021-04-07 14:35:40 -04:00
parent 82f029684e
commit ae47bfd25e
2 changed files with 1 additions and 2 deletions

View File

@ -308,7 +308,6 @@ class EnergyAde:
} }
thermal_zone_dic['energy:ThermalZone']['energy:contains'] = usage_zones thermal_zone_dic['energy:ThermalZone']['energy:contains'] = usage_zones
thermal_zones.append(thermal_zone_dic) thermal_zones.append(thermal_zone_dic)
print('debug me')
return thermal_zones return thermal_zones
def _thermal_boundaries(self, city, thermal_zone): def _thermal_boundaries(self, city, thermal_zone):

View File

@ -26,7 +26,7 @@ class TestGeometryFactory(TestCase):
def _get_citygml(self, file): def _get_citygml(self, file):
if self._city_gml is None: if self._city_gml is None:
file_path = (self._example_path / file).resolve() file_path = (self._example_path / file).resolve()
self._city_gml = GeometryFactory('citygml', file_path)._city_debug self._city_gml = GeometryFactory('citygml', file_path).city
self.assertIsNotNone(self._city_gml, 'city is none') self.assertIsNotNone(self._city_gml, 'city is none')
return self._city_gml return self._city_gml