mirror of
https://github.com/python-telegram-bot/python-telegram-bot.git
synced 2024-12-22 22:45:09 +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."""
|
||||
|
||||
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,
|
||||
|
|
Loading…
Reference in a new issue