From 30f683ea9f63027826e2f253b0f98b0040350871 Mon Sep 17 00:00:00 2001 From: guille Date: Mon, 16 Jan 2023 08:05:23 -0500 Subject: [PATCH] Correct merge error --- unittests/test_geometry_factory.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/unittests/test_geometry_factory.py b/unittests/test_geometry_factory.py index 5da32682..2558c637 100644 --- a/unittests/test_geometry_factory.py +++ b/unittests/test_geometry_factory.py @@ -150,12 +150,12 @@ class TestGeometryFactory(TestCase): """ Test geojson import """ - file = 'sample.geojson' + file = 'concordia.geojson' city = self._get_city(file, 'geojson', height_field='citygml_me', year_of_construction_field='ANNEE_CONS', function_field='LIBELLE_UT') - exports.exports_factory.ExportsFactory('obj', city, self._output_path).export_debug() + exports.exports_factory.ExportsFactory('obj', city, self._output_path).export() self.assertEqual(207, len(city.buildings), 'wrong number of buildings') self._check_buildings(city)