Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ async def test_list_chat_participants(async_chat_participants_service):
assert all(isinstance(participant, ChatParticipant) for participant in result)


@pytest.mark.skip(reason="Unskip after MPT-19124 completed") # noqa: AAA01
@pytest.mark.skip(reason="Unskip after MPT-20015 completed") # noqa: AAA01
def test_create_chat_participant(async_created_chat_participant):
assert isinstance(async_created_chat_participant, ChatParticipant)


@pytest.mark.skip(reason="Unskip after MPT-19124 completed")
@pytest.mark.skip(reason="Unskip after MPT-20015 completed")
async def test_update_chat_participant(
async_chat_participants_service, async_created_chat_participant
):
Expand All @@ -32,7 +32,7 @@ async def test_update_chat_participant(
assert isinstance(result, ChatParticipant)


@pytest.mark.skip(reason="Unskip after MPT-19124 completed")
@pytest.mark.skip(reason="Unskip after MPT-20015 completed")
async def test_delete_chat_participant(
async_chat_participants_service, async_created_chat_participant
):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,19 @@ def test_list_chat_participants(chat_participants_service):
assert all(isinstance(participant, ChatParticipant) for participant in result)


@pytest.mark.skip(reason="Unskip after MPT-19124 completed") # noqa: AAA01
@pytest.mark.skip(reason="Unskip after MPT-20015 completed") # noqa: AAA01
def test_create_chat_participant(created_chat_participant):
assert isinstance(created_chat_participant, ChatParticipant)


@pytest.mark.skip(reason="Unskip after MPT-19124 completed")
@pytest.mark.skip(reason="Unskip after MPT-20015 completed")
def test_update_chat_participant(chat_participants_service, created_chat_participant):
result = chat_participants_service.update(created_chat_participant.id, {"status": "Active"})

assert isinstance(result, ChatParticipant)


@pytest.mark.skip(reason="Unskip after MPT-19124 completed")
@pytest.mark.skip(reason="Unskip after MPT-20015 completed")
def test_delete_chat_participant(chat_participants_service, created_chat_participant):
result = created_chat_participant

Expand Down