]> git.openstreetmap.org Git - nominatim.git/blobdiff - test/python/test_db_sql_preprocessor.py
Merge pull request #2429 from lonvia/place-name-to-admin-boundary
[nominatim.git] / test / python / test_db_sql_preprocessor.py
index 08a195bd2d794d9c6f9f01cd18116df64d466b42..79f82daccd150a7b9371bcadd02ea6fc121ed8a2 100644 (file)
@@ -1,8 +1,6 @@
 """
 Tests for SQL preprocessing.
 """
-from pathlib import Path
-
 import pytest
 
 @pytest.fixture
@@ -24,7 +22,6 @@ def sql_factory(tmp_path):
     ("'{{db.partitions|join}}'", '012'),
     ("{% if 'country_name' in db.tables %}'yes'{% else %}'no'{% endif %}", "yes"),
     ("{% if 'xxx' in db.tables %}'yes'{% else %}'no'{% endif %}", "no"),
-    ("'{{config.DATABASE_MODULE_PATH}}'", '.')
     ])
 def test_load_file_simple(sql_preprocessor, sql_factory, temp_db_conn, temp_db_cursor, expr, ret):
     sqlfile = sql_factory("RETURN {};".format(expr))