mirror of
https://github.com/python-telegram-bot/python-telegram-bot.git
synced 2025-01-10 12:02:39 +01:00
Fix inverted lat/long
This commit is contained in:
parent
38c6d002c8
commit
a1e12d424c
1 changed files with 2 additions and 2 deletions
|
@ -31,8 +31,8 @@ class LocationTest(BaseTest, unittest.TestCase):
|
||||||
"""This object represents Tests for Telegram Location."""
|
"""This object represents Tests for Telegram Location."""
|
||||||
|
|
||||||
def setUp(self):
|
def setUp(self):
|
||||||
self.latitude = -46.788275
|
self.latitude = -23.691288
|
||||||
self.longitude = -23.691287
|
self.longitude = -46.788279
|
||||||
|
|
||||||
self.json_dict = {
|
self.json_dict = {
|
||||||
'latitude': self.latitude,
|
'latitude': self.latitude,
|
||||||
|
|
Loading…
Reference in a new issue