X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/00e3a752c9a749d2e2a0b8a406dd1b7e8e204765..6e81596609518d9202a00bd457af0a75648d30d9:/test/python/api/test_results.py diff --git a/test/python/api/test_results.py b/test/python/api/test_results.py index 7ea1fb1f..97d95ac0 100644 --- a/test/python/api/test_results.py +++ b/test/python/api/test_results.py @@ -58,9 +58,9 @@ def test_create_row_none(func): @pytest.mark.parametrize('func', (nresults.create_from_osmline_row, nresults.create_from_tiger_row)) def test_create_row_with_housenumber(func): - row = FakeRow(place_id = 2345, osm_id = 111, housenumber = 4, - address = None, postcode = '99900', country_code = 'xd', - centroid = FakeCentroid(0, 0)) + row = FakeRow(place_id=2345, osm_type='W', osm_id=111, housenumber=4, + address=None, postcode='99900', country_code='xd', + centroid=FakeCentroid(0, 0)) res = func(row, DetailedResult) @@ -72,7 +72,7 @@ def test_create_row_with_housenumber(func): @pytest.mark.parametrize('func', (nresults.create_from_osmline_row, nresults.create_from_tiger_row)) def test_create_row_without_housenumber(func): - row = FakeRow(place_id=2345, osm_id=111, + row = FakeRow(place_id=2345, osm_type='W', osm_id=111, startnumber=1, endnumber=11, step=2, address=None, postcode='99900', country_code='xd', centroid=FakeCentroid(0, 0))