From a1e12d424c623697157fef196307db700b3dd257 Mon Sep 17 00:00:00 2001 From: Leandro Toledo Date: Thu, 10 Sep 2015 16:59:08 -0300 Subject: [PATCH] Fix inverted lat/long --- tests/test_location.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_location.py b/tests/test_location.py index 4f3e86f0b..c2dbf2fdb 100644 --- a/tests/test_location.py +++ b/tests/test_location.py @@ -31,8 +31,8 @@ class LocationTest(BaseTest, unittest.TestCase): """This object represents Tests for Telegram Location.""" def setUp(self): - self.latitude = -46.788275 - self.longitude = -23.691287 + self.latitude = -23.691288 + self.longitude = -46.788279 self.json_dict = { 'latitude': self.latitude,