]> git.openstreetmap.org Git - nominatim.git/blobdiff - test/python/api/search/test_legacy_query_analyzer.py
Merge pull request #3536 from lonvia/remove-php
[nominatim.git] / test / python / api / search / test_legacy_query_analyzer.py
index 0e967c10fa5f8e062825fc19e491352eee087bb1..7a4d41d3758fcbf578f0ef1a28b9c04e45637695 100644 (file)
@@ -7,8 +7,6 @@
 """
 Tests for query analyzer for legacy tokenizer.
 """
-from pathlib import Path
-
 import pytest
 import pytest_asyncio
 
@@ -74,7 +72,7 @@ async def conn(table_factory, temp_db_cursor):
     temp_db_cursor.execute("""CREATE OR REPLACE FUNCTION make_standard_name(name TEXT)
                               RETURNS TEXT AS $$ SELECT lower(name); $$ LANGUAGE SQL;""")
 
-    async with NominatimAPIAsync(Path('/invalid'), {}) as api:
+    async with NominatimAPIAsync() as api:
         async with api.begin() as conn:
             yield conn