1
0
Fork 0
mirror of https://github.com/deltachat/deltachat-core.git synced 2025-10-03 17:59:19 +02:00

don't use removed set_config_int from python bindings

This commit is contained in:
holger krekel 2018-10-04 21:11:37 +02:00
parent fcff3f795b
commit 20f0c93ba6

View file

@ -57,7 +57,7 @@ def acfactory(pytestconfig, tmpdir, request):
lib.dc_set_config(ac._dc_context, b"configured_addr", addr.encode("ascii"))
ac.set_config("mail_pw", "123")
lib.dc_set_config(ac._dc_context, b"configured_mail_pw", b"123")
lib.dc_set_config_int(ac._dc_context, b"configured", 1)
lib.dc_set_config(ac._dc_context, b"configured", b"1")
return ac
def get_online_configuring_account(self):