python: remove unused start_threads calls

This commit is contained in:
dignifiedquire
2020-05-19 15:47:20 +02:00
parent 14c9161268
commit ba4df23bff
2 changed files with 1 additions and 24 deletions

View File

@@ -23,9 +23,7 @@ class TestOnlineInCreation:
ac1 = acfactory.get_online_configuring_account()
ac2 = acfactory.get_online_configuring_account()
wait_configuration_progress(ac1, 1000)
ac1.start_threads()
wait_configuration_progress(ac2, 1000)
ac2.start_threads()
c2 = ac1.create_contact(email=ac2.get_config("addr"))
chat = ac1.create_chat_by_contact(c2)
@@ -40,9 +38,7 @@ class TestOnlineInCreation:
ac1 = acfactory.get_online_configuring_account()
ac2 = acfactory.get_online_configuring_account()
wait_configuration_progress(ac1, 1000)
ac1.start_threads()
wait_configuration_progress(ac2, 1000)
ac2.start_threads()
c2 = ac1.create_contact(email=ac2.get_config("addr"))
chat = ac1.create_chat_by_contact(c2)
@@ -60,9 +56,7 @@ class TestOnlineInCreation:
ac1 = acfactory.get_online_configuring_account()
ac2 = acfactory.get_online_configuring_account()
wait_configuration_progress(ac1, 1000)
ac1.start_threads()
wait_configuration_progress(ac2, 1000)
ac2.start_threads()
c2 = ac1.create_contact(email=ac2.get_config("addr"))
chat = ac1.create_chat_by_contact(c2)