]> git.openstreetmap.org Git - nominatim.git/blobdiff - test/python/api/search/test_legacy_query_analyzer.py
restrict use of os.environ in Configuration
[nominatim.git] / test / python / api / search / test_legacy_query_analyzer.py
index a99485ead17c95071ec7a280611b96c1bfbe2bf8..7a4d41d3758fcbf578f0ef1a28b9c04e45637695 100644 (file)
@@ -72,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(environ={}) as api:
+    async with NominatimAPIAsync() as api:
         async with api.begin() as conn:
             yield conn