]> git.openstreetmap.org Git - nominatim.git/blobdiff - test/python/api/test_helpers_v1.py
work round typing bug in pyosmium 4.0
[nominatim.git] / test / python / api / test_helpers_v1.py
index 45f538dea34fb777e90d39969b87fba2ab6c489e..3a6a9a0b05c4798c6eb4e3b498972e75b4847ad4 100644 (file)
@@ -2,16 +2,20 @@
 #
 # This file is part of Nominatim. (https://nominatim.org)
 #
 #
 # This file is part of Nominatim. (https://nominatim.org)
 #
-# Copyright (C) 2023 by the Nominatim developer community.
+# Copyright (C) 2024 by the Nominatim developer community.
 # For a full list of authors see the git log.
 """
 Tests for the helper functions for v1 API.
 """
 import pytest
 
 # For a full list of authors see the git log.
 """
 Tests for the helper functions for v1 API.
 """
 import pytest
 
-import nominatim.api.v1.helpers as helper
+import nominatim_api.v1.helpers as helper
 
 
-@pytest.mark.parametrize('inp', ['', 'abc', '12 23', 'abc -78.90, 12.456 def'])
+@pytest.mark.parametrize('inp', ['',
+                                 'abc',
+                                 '12 23',
+                                 'abc -78.90, 12.456 def',
+                                 '40 N 60 W'])
 def test_extract_coords_no_coords(inp):
     query, x, y = helper.extract_coords_from_query(inp)
 
 def test_extract_coords_no_coords(inp):
     query, x, y = helper.extract_coords_from_query(inp)