From 5a68f77b641f9608c4fc135442f290b53cd0117b Mon Sep 17 00:00:00 2001 From: John Krauss Date: Mon, 20 Jun 2016 13:16:12 -0400 Subject: [PATCH] use Madrid for all spanish tests, add point for england/wales wales specifically --- scripts/autotest.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/scripts/autotest.py b/scripts/autotest.py index e103adb..9b7b0b5 100644 --- a/scripts/autotest.py +++ b/scripts/autotest.py @@ -55,7 +55,12 @@ def default_point(column_id): 'us.census.tiger.school_district_elementary_clipped', 'us.census.tiger.school_district_secondary_clipped'): return 'CDB_LatLng(40.7025, -73.7067)' - elif column_id.startswith('es.ine'): + elif column_id.startswith('uk'): + if 'WA' in column_id: + return 'CDB_LatLng(51.46844551219723, -3.184833526611328)' + else: + return 'CDB_LatLng(51.51461834694225, -0.08883476257324219)' + elif column_id.startswith('es'): return 'CDB_LatLng(42.8226119029222, -2.51141249535454)' elif column_id.startswith('us.zillow'): return 'CDB_LatLng(28.3305906291771, -81.3544048197256)'