From a1f166c5468e7f15ee3e06cb0a2c2075ff520766 Mon Sep 17 00:00:00 2001 From: Oleg A Date: Mon, 10 Jan 2022 11:36:54 +0300 Subject: [PATCH] fix: string CHAT_PHOTO data --- tests/types/dataset.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/types/dataset.py b/tests/types/dataset.py index 13763421..bd73f377 100644 --- a/tests/types/dataset.py +++ b/tests/types/dataset.py @@ -20,10 +20,10 @@ CHAT = { } CHAT_PHOTO = { - "small_file_id": 1, - "small_file_unique_id": 1, - "big_file_id": 1, - "big_file_unique_id": 1, + "small_file_id": "small_file_id", + "small_file_unique_id": "small_file_unique_id", + "big_file_id": "big_file_id", + "big_file_unique_id": "big_file_unique_id", }