mirror of
https://github.com/python-telegram-bot/python-telegram-bot.git
synced 2024-11-21 14:46:29 +01:00
Fix Failing file_size
Tests (#3906)
This commit is contained in:
parent
1ef242a17e
commit
eaf802e07d
2 changed files with 4 additions and 2 deletions
|
@ -99,7 +99,9 @@ class TestPhotoWithoutRequest(TestPhotoBase):
|
|||
assert photo.file_size in self.file_size
|
||||
assert thumb.width == 90
|
||||
assert thumb.height == 90
|
||||
assert thumb.file_size == 1477
|
||||
# File sizes don't seem to be consistent, so we use the values that we have observed
|
||||
# so far
|
||||
assert thumb.file_size in [1475, 1477]
|
||||
|
||||
def test_de_json(self, bot, photo):
|
||||
json_dict = {
|
||||
|
|
|
@ -103,7 +103,7 @@ class TestStickerBase:
|
|||
file_size = 39518
|
||||
thumb_width = 319
|
||||
thumb_height = 320
|
||||
thumb_file_size = 21472
|
||||
thumb_file_size = 21448
|
||||
type = Sticker.REGULAR
|
||||
custom_emoji_id = "ThisIsSuchACustomEmojiID"
|
||||
needs_repainting = True
|
||||
|
|
Loading…
Reference in a new issue