mirror of
https://github.com/python-telegram-bot/python-telegram-bot.git
synced 2024-11-22 15:17:00 +01:00
Trying to isolate the problem.
This commit is contained in:
parent
fe06708d34
commit
4775107af0
1 changed files with 10 additions and 11 deletions
|
@ -84,18 +84,17 @@ class InlineQueryResultVenueTest(BaseTest, unittest.TestCase):
|
|||
self.assertDictEqual(venue.reply_markup.to_dict(),
|
||||
self.reply_markup.to_dict())
|
||||
|
||||
def test_venue_to_json(self):
|
||||
venue = telegram.InlineQueryResultVenue.de_json(self.json_dict)
|
||||
|
||||
self.assertTrue(self.is_json(venue.to_json()))
|
||||
|
||||
# def test_venue_to_dict(self):
|
||||
# venue = \
|
||||
# telegram.InlineQueryResultVenue.de_json(
|
||||
# self.json_dict).to_dict()
|
||||
# def test_venue_to_json(self):
|
||||
# venue = telegram.InlineQueryResultVenue.de_json(self.json_dict)
|
||||
#
|
||||
# self.assertTrue(self.is_dict(venue))
|
||||
# self.assertDictEqual(self.json_dict, venue)
|
||||
# self.assertTrue(self.is_json(venue.to_json()))
|
||||
|
||||
def test_venue_to_dict(self):
|
||||
venue = telegram.InlineQueryResultVenue.de_json(
|
||||
self.json_dict).to_dict()
|
||||
|
||||
self.assertTrue(self.is_dict(venue))
|
||||
self.assertDictEqual(self.json_dict, venue)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
|
|
Loading…
Reference in a new issue