From 81ccb156ca93a92c77519e0bc886eda6feb4440c Mon Sep 17 00:00:00 2001 From: Ian Dees Date: Thu, 2 Sep 2021 17:31:35 -0500 Subject: [PATCH] Check for presence of the feature, not absence --- integration-test/1972-big-parking-lots.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/integration-test/1972-big-parking-lots.py b/integration-test/1972-big-parking-lots.py index d1073c033..878a3cd0a 100644 --- a/integration-test/1972-big-parking-lots.py +++ b/integration-test/1972-big-parking-lots.py @@ -25,8 +25,10 @@ def test_osm_big_parking_capacity(self): ) x, y = deg2num(lat, lon, 15) - self.assert_no_matching_feature( - 15, x, y, 'places', { + self.assert_has_feature( + 15, x, y, 'pois', { 'id': 8712714905, + 'kin': 'parking', + 'min_zoom': 18, 'source': u'openstreetmap.org', })