test: Remove old test_broadcast, which tested manually adding a member to a broadcast

This commit is contained in:
Hocuri
2025-09-09 20:29:49 +02:00
parent dd11364bef
commit de10f31a3a
3 changed files with 7 additions and 36 deletions

View File

@@ -126,6 +126,8 @@ def test_qr_securejoin_broadcast(acfactory, all_devices_online):
logging.info("Alice creates a broadcast")
alice_chat = alice.create_broadcast("Broadcast channel for everyone!")
snapshot = alice_chat.get_basic_snapshot()
assert not snapshot.is_unpromoted # Broadcast channels are never unpromoted
logging.info("Bob joins the broadcast")
@@ -169,6 +171,8 @@ def test_qr_securejoin_broadcast(acfactory, all_devices_online):
hello_msg = chat_msgs[2].get_snapshot()
assert hello_msg.text == "Hello everyone!"
assert not hello_msg.is_info
assert hello_msg.show_padlock
assert hello_msg.error is None
assert len(chat_msgs) == 3