From 4b9ba06b42cb643ba2e325961cfab3b0745a7115 Mon Sep 17 00:00:00 2001 From: John Krauss Date: Thu, 8 Dec 2016 02:55:53 +0000 Subject: [PATCH] fix lat/lng switch for brazil --- src/python/test/autotest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/python/test/autotest.py b/src/python/test/autotest.py index c4cb5db..d74d7c2 100644 --- a/src/python/test/autotest.py +++ b/src/python/test/autotest.py @@ -147,7 +147,7 @@ def default_lonlat(column_id): elif column_id.startswith('eu.'): raise SkipTest('No tests for Eurostat!') elif column_id.startswith('br.'): - return (-22.9, -43.19) + return (-43.19, -22.9) else: raise Exception('No catalog point set for {}'.format(column_id))