From def7d6cd7c21f47a0c516fa45ba21d879d0755c9 Mon Sep 17 00:00:00 2001 From: Guille Date: Thu, 11 Jun 2020 17:01:06 -0400 Subject: [PATCH] Add code comment to the classes and improve overall quality --- tests/test_geometry_factory.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_geometry_factory.py b/tests/test_geometry_factory.py index 77390fbc..7d763035 100644 --- a/tests/test_geometry_factory.py +++ b/tests/test_geometry_factory.py @@ -23,7 +23,7 @@ class TestGeometryFactory(TestCase): def _get_citygml(self): if self._city_gml is None: - file_path = (self._example_path / '2050 bp_2buildings.gml').resolve() + file_path = (self._example_path / 'buildings.gml').resolve() self._city_gml = GeometryFactory('citygml', file_path).city self.assertIsNotNone(self._city_gml, 'city is none') return self._city_gml