From dd11364bef2c041309ef2ecc53293ec336d448b7 Mon Sep 17 00:00:00 2001 From: Hocuri Date: Tue, 9 Sep 2025 20:01:03 +0200 Subject: [PATCH] test: fix test_broadcast(): Broadcast channels are never unpromoted --- deltachat-rpc-client/tests/test_something.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deltachat-rpc-client/tests/test_something.py b/deltachat-rpc-client/tests/test_something.py index bd49c0eb8..26a5fd3c3 100644 --- a/deltachat-rpc-client/tests/test_something.py +++ b/deltachat-rpc-client/tests/test_something.py @@ -882,7 +882,7 @@ def test_broadcast(acfactory): alice_chat = alice.create_broadcast("My great channel") snapshot = alice_chat.get_basic_snapshot() assert snapshot.name == "My great channel" - assert snapshot.is_unpromoted + assert not snapshot.is_unpromoted # Broadcast channels are never unpromoted assert snapshot.is_encrypted assert snapshot.chat_type == ChatType.OUT_BROADCAST