Skip to content

Commit f0b91ec

Browse files
committed
Fix travis
1 parent bbbc622 commit f0b91ec

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

tests/test_photo.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,14 @@ class PhotoTest(BaseTest, unittest.TestCase):
3535

3636
def setUp(self):
3737
self.photo_file = open('tests/data/telegram.jpg', 'rb')
38-
self.photo_file_id = 'AgADAQADvb8xGx8j9QcpZDKxYoFK3bfX1i8ABFX_dgMWoKDuQugAAgI'
38+
self.photo_file_id = 'AgADAQADgEsyGx8j9QfmDMmwkPBrFcKRzy8ABHW8ul9nW7FoNHYBAAEC'
3939
self.photo_file_url = 'https://raw.githubusercontent.com/python-telegram-bot/python-telegram-bot/master/tests/data/telegram.jpg'
4040
self.width = 300
4141
self.height = 300
4242
self.thumb = {
4343
'width': 90,
4444
'height': 90,
45-
'file_id':
46-
'AgADAQADvb8xGx8j9QcpZDKxYoFK3bfX1i8ABBxRLXFhLnhIQ-gAAgI',
45+
'file_id': 'AgADAQADgEsyGx8j9QfmDMmwkPBrFcKRzy8ABD64nkFkjujeNXYBAAEC',
4746
'file_size': 1478
4847
}
4948
self.file_size = 10209

0 commit comments

Comments
 (0)