adapt python bindings

This commit is contained in:
B. Petersen
2020-02-14 12:45:03 +01:00
parent 1f9520dc78
commit c8a8dbbbae
3 changed files with 4 additions and 41 deletions

View File

@@ -426,17 +426,6 @@ class TestOfflineChat:
chat.remove_contact(contacts[3])
assert len(chat.get_contacts()) == 9
def test_archive_and_pin_chat(self, ac1):
chat = ac1.create_group_chat(name="title1")
assert not chat.is_archived()
chat.archive()
assert chat.is_archived()
chat.unarchive()
assert not chat.is_archived()
chat.pin()
assert chat.is_pinned()
class TestOnlineAccount:
@pytest.mark.ignored