]> git.openstreetmap.org Git - nominatim.git/blobdiff - test/python/tools/test_database_import.py
Merge remote-tracking branch 'upstream/master'
[nominatim.git] / test / python / tools / test_database_import.py
index 8ac31bc0f4a2f9c20e8e18637bc8a151a1184145..68d19a07beb78e0b3b4adffa298016d2da3eff4d 100644 (file)
@@ -179,7 +179,7 @@ def test_truncate_database_tables(temp_db_conn, temp_db_cursor, table_factory, w
 
 @pytest.mark.parametrize("threads", (1, 5))
 def test_load_data(dsn, place_row, placex_table, osmline_table,
-                   word_table, temp_db_cursor, threads):
+                   temp_db_cursor, threads):
     for func in ('precompute_words', 'getorcreate_housenumber_id', 'make_standard_name'):
         temp_db_cursor.execute(f"""CREATE FUNCTION {func} (src TEXT)
                                   RETURNS TEXT AS $$ SELECT 'a'::TEXT $$ LANGUAGE SQL