]> git.openstreetmap.org Git - nominatim.git/blobdiff - tests/steps/terrain.py
utils/update.php: use fail() whenever possible for errors
[nominatim.git] / tests / steps / terrain.py
index 746485ac14b4bfb961e2e4d2274cf31cff2d9b04..e9561d1a9fd11b52653f8d383d7f5d9eb8872785 100644 (file)
@@ -94,7 +94,7 @@ def get_placeid(oid):
         q = 'SELECT place_id FROM placex where osm_type = %s and osm_id = %s and class = %s'
         params = (osmtype, osmid, cls)
     cur.execute(q, params)
-    assert_equals (cur.rowcount, 1)
+    assert_equals(cur.rowcount, 1, "%d rows found for place %s" % (cur.rowcount, oid))
     return cur.fetchone()[0]