test: remove all calls to print() from deltachat-rpc-client tests

They frequently fail in CI with `OSError: [Errno 9] Bad file descriptor`.
This commit is contained in:
link2xt
2024-11-07 00:25:40 +00:00
committed by l
parent 4e5e9f6006
commit 800edc6fce
2 changed files with 4 additions and 6 deletions

View File

@@ -57,8 +57,8 @@ def test_acfactory(acfactory) -> None:
if event.progress == 1000: # Success
break
else:
print(event)
print("Successful configuration")
logging.info(event)
logging.info("Successful configuration")
def test_configure_starttls(acfactory) -> None: