We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 70445dc commit 2a7b03eCopy full SHA for 2a7b03e
tests/test_photo.py
@@ -138,13 +138,11 @@ def test_send_photo_resend(self):
138
self.assertTrue(isinstance(thumb, telegram.PhotoSize))
139
self.assertEqual(thumb.width, self.thumb['width'])
140
self.assertEqual(thumb.height, self.thumb['height'])
141
- self.assertEqual(thumb.file_size, self.thumb['file_size'])
142
143
self.assertEqual(photo.file_id, self.photo_file_id)
144
self.assertTrue(isinstance(photo, telegram.PhotoSize))
145
self.assertEqual(photo.width, self.width)
146
self.assertEqual(photo.height, self.height)
147
- self.assertEqual(photo.file_size, self.file_size)
148
149
def test_photo_de_json(self):
150
"""Test Photo.de_json() method"""
0 commit comments