X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/2bab0ca060ff224091b20a0ac808a3febaba04b1..2c61fe08a031bd4ccbe47c62c021321e2dff7510:/test/python/utils/test_centroid.py diff --git a/test/python/utils/test_centroid.py b/test/python/utils/test_centroid.py index d91edae2..664d5cd7 100644 --- a/test/python/utils/test_centroid.py +++ b/test/python/utils/test_centroid.py @@ -2,14 +2,15 @@ # # This file is part of Nominatim. (https://nominatim.org) # -# Copyright (C) 2024 by the Nominatim developer community. +# Copyright (C) 2025 by the Nominatim developer community. # For a full list of authors see the git log. """ Tests for centroid computation. """ import pytest -from nominatim_core.utils.centroid import PointsCentroid +from nominatim_db.utils.centroid import PointsCentroid + def test_empty_set(): c = PointsCentroid() @@ -18,7 +19,7 @@ def test_empty_set(): c.centroid() -@pytest.mark.parametrize("centroid", [(0,0), (-1, 3), [0.0000032, 88.4938]]) +@pytest.mark.parametrize("centroid", [(0, 0), (-1, 3), [0.0000032, 88.4938]]) def test_one_point_centroid(centroid): c = PointsCentroid()