test: enable verified 1:1 chats in deltachat-rpc-client tests

This commit is contained in:
link2xt
2023-11-08 21:54:12 +00:00
parent fc09210aea
commit 0fe94e47cc

View File

@@ -21,7 +21,9 @@ class ACFactory:
self.deltachat = deltachat
def get_unconfigured_account(self) -> Account:
return self.deltachat.add_account()
account = self.deltachat.add_account()
account.set_config("verified_one_on_one_chats", "1")
return account
def get_unconfigured_bot(self) -> Bot:
return Bot(self.get_unconfigured_account())