From c3e21ea38880bb625009b4e58a723813b7d89cb0 Mon Sep 17 00:00:00 2001 From: Sarah Hoffmann Date: Fri, 27 May 2016 23:36:01 +0200 Subject: [PATCH] reinstate tests for geometrytype --- tests/steps/db_results.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/steps/db_results.py b/tests/steps/db_results.py index 1105ee39..53374e71 100644 --- a/tests/steps/db_results.py +++ b/tests/steps/db_results.py @@ -53,6 +53,7 @@ def check_placex_content(step, tablename): if tablename == 'location_property_osmline': q = q + ' FROM %s where osm_id = %%s' % (tablename,) else: + q = q + ", ST_GeometryType(geometry) as geometrytype" q = q + ' FROM %s where osm_type = %%s and osm_id = %%s' % (tablename,) if cls is None: if tablename == 'location_property_osmline':