From 7012b99d739e82bb9ef3eff8efa9d5eb03a04d87 Mon Sep 17 00:00:00 2001 From: link2xt Date: Fri, 17 Nov 2023 12:51:59 +0000 Subject: [PATCH] test: remove `test_qr_setup_contact` from online python tests There is an identical `test_qr_setup_contact` in deltachat-rpc-client test suite which also checks that contact profiles get verified. --- python/tests/test_1_online.py | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/python/tests/test_1_online.py b/python/tests/test_1_online.py index f30ed4e03..d11262882 100644 --- a/python/tests/test_1_online.py +++ b/python/tests/test_1_online.py @@ -1658,17 +1658,6 @@ def test_ac_setup_message_twice(acfactory, lp): assert ac1.get_info()["fingerprint"] == ac2.get_info()["fingerprint"] -def test_qr_setup_contact(acfactory, lp): - ac1, ac2 = acfactory.get_online_accounts(2) - lp.sec("ac1: create QR code and let ac2 scan it, starting the securejoin") - qr = ac1.get_setup_contact_qr() - - lp.sec("ac2: start QR-code based setup contact protocol") - ch = ac2.qr_setup_contact(qr) - assert ch.id >= 10 - ac1._evtracker.wait_securejoin_inviter_progress(1000) - - @pytest.mark.parametrize("verified_one_on_one_chats", [0, 1]) def test_qr_join_chat(acfactory, lp, verified_one_on_one_chats): ac1, ac2 = acfactory.get_online_accounts(2)