mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-19 12:08:11 +00:00
Do not check admin status for one-to-one chat room in group chat testers.
This commit is contained in:
parent
95c39b0e1a
commit
32b565265c
1 changed files with 2 additions and 1 deletions
|
|
@ -262,7 +262,8 @@ static LinphoneChatRoom * check_creation_chat_room_client_side(bctbx_list_t *lcs
|
|||
BC_ASSERT_EQUAL(linphone_chat_room_get_nb_participants(chatRoom), participantNumber, int, "%d");
|
||||
LinphoneParticipant *participant = linphone_chat_room_get_me(chatRoom);
|
||||
BC_ASSERT_PTR_NOT_NULL(participant);
|
||||
BC_ASSERT(isAdmin == linphone_participant_is_admin(participant));
|
||||
if (!(linphone_chat_room_get_capabilities(chatRoom) & LinphoneChatRoomCapabilitiesOneToOne))
|
||||
BC_ASSERT(isAdmin == linphone_participant_is_admin(participant));
|
||||
BC_ASSERT_STRING_EQUAL(linphone_chat_room_get_subject(chatRoom), subject);
|
||||
}
|
||||
return chatRoom;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue