diff --git a/python/src/deltachat/const.py b/python/src/deltachat/const.py index d72a63383..8fbf26d6c 100644 --- a/python/src/deltachat/const.py +++ b/python/src/deltachat/const.py @@ -151,7 +151,8 @@ DC_STR_MSGLOCATIONENABLED = 64 DC_STR_MSGLOCATIONDISABLED = 65 DC_STR_LOCATION = 66 DC_STR_STICKER = 67 -DC_STR_COUNT = 67 +DC_STR_DEVICE_MESSAGES = 68 +DC_STR_COUNT = 68 # end const generated diff --git a/python/tests/test_account.py b/python/tests/test_account.py index 3580036c1..0a76cf3da 100644 --- a/python/tests/test_account.py +++ b/python/tests/test_account.py @@ -768,6 +768,7 @@ class TestOnlineAccount: ac1._evlogger.get_matching("DC_EVENT_IMAP_MESSAGE_DELETED") ac2._evlogger.get_matching("DC_EVENT_IMAP_MESSAGE_DELETED") wait_securejoin_inviter_progress(ac1, 1000) + ac1._evlogger.get_matching("DC_EVENT_SECUREJOIN_SUCCEEDED") def test_qr_verified_group_and_chatting(self, acfactory, lp): ac1, ac2 = acfactory.get_two_online_accounts()