We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e018853 commit 7483d55Copy full SHA for 7483d55
tests/actual_tests/talk_test.py
@@ -116,7 +116,8 @@ async def test_get_conversations_modified_since_async(anc):
116
117
118
def _test_get_conversations_include_status(participants: list[talk.Participant]):
119
- assert len(participants) == 2
+ # april 2025: something changed in Nextcloud 31+, and now here is "1" as result instead of 2
120
+ assert len(participants) in (1, 2)
121
second_participant = next(i for i in participants if i.actor_id == environ["TEST_USER_ID"])
122
assert second_participant.actor_type == "users"
123
assert isinstance(second_participant.attendee_id, int)
0 commit comments