]> git.openstreetmap.org Git - nominatim.git/blobdiff - test/python/api/test_export.py
use word_token length when penalizing against postcodes
[nominatim.git] / test / python / api / test_export.py
index c94cb7fb57624b82ceeb4e07ad9929d3848544fd..7a4c6883533568d8e7b60673972a897e02f46d9d 100644 (file)
@@ -16,8 +16,7 @@ import nominatim_db.cli
 def run_export(tmp_path, capsys):
     def _exec(args):
         cli_args = ['export', '--project-dir', str(tmp_path)] + args
-        assert 0 == nominatim_db.cli.nominatim(osm2pgsql_path='OSM2PGSQL NOT AVAILABLE',
-                                               cli_args=cli_args)
+        assert 0 == nominatim_db.cli.nominatim(cli_args=cli_args)
         return capsys.readouterr().out.split('\r\n')
 
     return _exec