Telethon/client/tests/packed_chat_test.py

11 lines
321 B
Python
Raw Normal View History

from telethon._impl.session.chat.packed import PackedChat, PackedType
def test_hash_optional() -> None:
for ty in PackedType:
pc = PackedChat(ty, 123, 456789)
assert PackedChat.from_bytes(bytes(pc)) == pc
pc = PackedChat(ty, 987, None)
assert PackedChat.from_bytes(bytes(pc)) == pc